1. ホーム
  2. c#

[解決済み] WPFのテキストボックスのバインディングは、新しい文字が入力されるたびに起動するのでしょうか?

2023-03-17 16:58:42

質問

テキストボックスに新しい文字が入力されるとすぐにデータバインディングが更新されるようにするにはどうすればよいでしょうか。

私は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 イベントを処理しなければなりませんか。

どのように解決するのですか?

テキストボックスのバインディングに UpdateSourceTrigger=PropertyChanged .