我有一个名为文档
的课程public class Document : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
private string oldId;
public string OldId
{
get { return oldId; }
set { id = value; }
}
private string id;
public string Id
{
get { return id; }
set {
id = value;
NotifyPropertyChanged("HasChanged");
}
}
private string path;
public string Path
{
get { return path; }
set { path = value; }
}
public bool HasChanged
{
get { return id != oldId; }
}
public Document(string id, string path)
{
this.id = id;
this.oldId = id;
this.path = path;
}
}
我的WPF代码后面有文档列表,项是我表单中的ItemsControl。
AddItem("a", "b");
AddItem("b", "b");
AddItem("c", "b");
AddItem("d", "b");
...
private void AddItem(string key, string value)
{
items.Items.Add(new Document(key, value));
}
我的WPF如下所示:
<ItemsControl x:Name="items" AlternationCount="100">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="8*"/>
<ColumnDefinition Width="auto"/>
</Grid.ColumnDefinitions>
<TextBox
Text="{Binding Id}"
PreviewKeyDown="TextBox_PreviewKeyDown"></TextBox>
<Button
Grid.Column="1"
IsEnabled="{Binding HasChanged}"
Content="Ok"
Click="ButtonOk_Click"></Button>
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
正如你猜测的那样,当tb中的文本从原始文本改变时,我想启用Button。
问题是,在我更改其中一个文本框中的文本后,该按钮无法启用。
如果我点击该按钮,它将变为启用。
如果我再次点击它,它会执行OnClick。
按钮在按键上更新后会有什么变化?
请记住,我使用ItemControl即时生成按钮,因此无法通过代码隐藏更新它的名称。
我不使用ViewModel,我不想添加一个,因为这个项目很小,可以使用任何基于ViewModel的设计模式。
答案 0 :(得分:4)
您的体验可能是因为TextBoxes的默认绑定&#39; Text
属性有UpdateSourceTrigger=LostFocus
。
这意味着在Id
失去键盘焦点(单击禁用按钮)之前,TextBox
属性不会更新。可能,如果您单击另一个TextBox
,该按钮将启用相同的。
您可以在XAML中更改此行为,如下所示:
<TextBox Text="{Binding Id, UpdateSourceTrigger=PropertyChanged}"
PreviewKeyDown="TextBox_PreviewKeyDown"></TextBox>