📜  wpf 绑定祖先代码隐藏 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:41.859000             🧑  作者: Mango

代码示例1
Binding b = new Binding();

      b.RelativeSource = new RelativeSource(RelativeSourceMode.FindAncestor,this.GetType(),1);

      b.Path = new PropertyPath("MyDP");

      MyLable.SetBinding(ContentProperty, b);