Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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;
- }
- }
- }
|