因此,搜索没有帮助,我对绑定世界还是陌生的。
尽可能简化它:
我有2个窗户和一个课。在第一个窗口中,我全局声明一个班级列表:List<MyClass> MyList = new List<MyClass>();
该类使用PropertyChanged.Fody Nuget包支持INotifyPropertyChanged。
class MyClass : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public string FirstName { get; set; }
}
在第一个窗口中,我有一个文本框和一个按钮。 当我按下按钮时,将具有TextBox.Text的FirstName属性的新MyClass添加到MyList。然后,将新行添加到第二个窗口的主网格,并将标签添加到新行:
private void Button_Click(object sender, RoutedEventArgs e)
{
MyClass mc = new MyClass() { FirstName = TextBox.Text; };
MyList.Add(mc);
//find my second window and add row and label to its grid
foreach (Window window in Application.Current.Windows)
{
if (window.GetType() == typeof(SecondWindow))
{
Grid mgrid = (window as SecondWindow).MainGrid;
mgrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto });
Label FN = new Label()
{
Name = "lbl" + mc.FirstName,
Content = mc.FirstName,
};
mgrid.Children.Add(FN);
Grid.SetRow(FN, mgrid.RowDefinitions.Count - 2);
}
}
}
现在,在上面的代码中,我知道我应该以某种方式更改Content = mc.FirstName
以使其绑定到class属性,但不知道如何进行,并且搜索并不能完全帮助我解决它。
任何人都知道我该怎么办?
答案 0 :(得分:-1)
您可以在代码中添加如下所示的绑定:
Label label = new Label() {
Name = "lbl" + mc.FirstName
};
Binding binding = new Binding()
{
Mode = BindingMode.TwoWay,
UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged,
Path = new PropertyPath("FirstName")
};
label.SetBinding(ContentProperty, binding);