Files
DynamicDataDisplay/Backup/Common/NotifyingPanels/INotifyingPanel.cs
2024-02-23 09:29:44 -05:00

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;
}
}