我使用this教程来构建自定义控件。现在,我想向用户控件添加一条简单的消息(文本块),以便为用户提供一些指导。我想我可以在教程中添加一个公共属性,比如FileName,但是如何将textblock的Text属性连接到后面代码中的属性?然后确保文本块消息在属性更改时更新。
我喜欢能够通过属性在代码中设置消息的想法,因为我可能在页面上有多个此自定义控件类型的控件。我只是有点难以接线。
谢谢!
答案 0 :(得分:1)
这将是您的代码,它实现了INotifyPropertyChanged:
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private string _fileName;
/// <summary>
/// Get/Set the FileName property. Raises property changed event.
/// </summary>
public string FileName
{
get { return _fileName; }
set
{
if (_fileName != value)
{
_fileName = value;
RaisePropertyChanged("FileName");
}
}
}
public MainWindow()
{
DataContext = this;
FileName = "Testing.txt";
}
private void RaisePropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
这将是绑定到属性的XAML:
<TextBlock Text="{Binding FileName}" />
编辑:
添加 DataContext = this; 我通常不会绑定到后面的代码(我使用MVVM)。