我实际上遇到了一个我想解决的问题,最好是没有代码。
我有一个绑定到字符串的文本框,可以每50毫秒更新一次,我想,如果我点击它并输入一个新字符串,它会更新我班级中的TargetExample
。我已经听说过多重绑定,但我不确定它是否符合我的要求,而且我也想过通过点击文本框并显示另一个文本框来编辑,但我想知道是否有是另一种方式。
private string sourceExample;
public string SourceExample
{
get { return sourceExample; }
set
{
sourceExample= value;
OnPropertyChanged("SourceExample");
}
}
private string targetExample;
public string TargetExample
{
get { return targetExample; }
set
{
targetExample= value;
OnPropertyChanged("TargetExample");
}
}
XAML文件中的:
<TextBox Text="{Binding Path=SourceExample}">
提前谢谢