No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- 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;
- }
- }
- }
|