14 lines
287 B
C#
14 lines
287 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.Research.DynamicDataDisplay.Common
|
|
{
|
|
internal interface INotifyingPanel
|
|
{
|
|
NotifyingUIElementCollection NotifyingChildren { get; }
|
|
event EventHandler ChildrenCreated;
|
|
}
|
|
}
|