一旦在 TextBox 中键入新字符,如何进行数据绑定更新?
我正在学习 WPF 中的绑定,现在我已经陷入了一个(希望)简单的问题。
我有一个简单的 FileLister 类,您可以在其中设置 Path 属性,然后当您访问 FileNames 属性时,它将提供一个文件列表。 这就是那门课:
class FileLister:INotifyPropertyChanged {
private string _path = "";
public string Path {
get {
return _path;
}
set {
if (_path.Equals(value)) return;
_path = value;
OnPropertyChanged("Path");
OnPropertyChanged("FileNames");
}
}
public List<String> FileNames {
get {
return getListing(Path);
}
}
private List<string> getListing(string path) {
DirectoryInfo dir = new DirectoryInfo(path);
List<string> result = new List<string>();
if (!dir.Exists) return result;
foreach (FileInfo fi in dir.GetFiles()) {
result.Add(fi.Name);
}
return result;
}
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string property) {
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null) {
handler(this, new PropertyChangedEventArgs(property));
}
}
}
我在这个非常简单的应用程序中使用 FileLister 作为 StaticResource:
<Window x:Class="WpfTest4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfTest4"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<local:FileLister x:Key="fileLister" Path="d:\temp" />
</Window.Resources>
<Grid>
<TextBox Text="{Binding Source={StaticResource fileLister}, Path=Path, Mode=TwoWay}"
Height="25" Margin="12,12,12,0" VerticalAlignment="Top" />
<ListBox Margin="12,43,12,12" Name="listBox1" ItemsSource="{Binding Source={StaticResource ResourceKey=fileLister}, Path=FileNames}"/>
</Grid>
</Window>
绑定起作用了。如果我更改文本框中的值,然后单击其外部,列表框内容将更新(只要路径存在)。
问题是,我希望在键入新字符后立即更新,而不是等到文本框失去焦点。
我该怎么做? 有没有一种方法可以直接在 xaml 中实现这一点,或者我必须在框中处理 TextChanged 或 TextInput 事件?