You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System.Collections.ObjectModel;
- using System.Windows;
-
- namespace BPA.UIControl.Commons
- {
- /// <summary>
- /// 归属元素的可通知集合
- /// </summary>
- /// <typeparam name="T"></typeparam>
- public class ElementObservableCollection<T> : ObservableCollection<T>
- {
- /// <summary>
- /// 所有者
- /// </summary>
- public UIElement Owner { get; }
-
- public ElementObservableCollection(UIElement owner)
- {
- Owner = owner;
- }
- }
- }
|