先创建实体基类:NotificationObject(用来被实体类继承) 实现属性更改通知接口: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace TabControlDemo { public class NotificationObject:INotifyPropertyChanged { pu
原文:WPF关于控件 父级控件,子级控件,控件模板中的控件,等之间的相互访问 1,在菜单中访问 弹出菜单的控件 var mi = sender as MenuItem;//菜单条目 MenuItem var cm = mi.Parent as ContextMenu;//访问他爹 菜单 contextMenu var t1 = cm.PlacementTarget as ScrollContentPresenter; //访问 弹出此菜单的控件 2.用模版中的子元素 来引用 使用了此模版的控件