新しい文字ごとにWPFTextBoxバインディングを起動しますか?


83

TextBoxに新しい文字が入力されるとすぐに、データバインディングを更新するにはどうすればよいですか?

私はWPFでのバインディングについて学んでいますが、今では(うまくいけば)単純な問題に悩まされています。

Pathプロパティを設定できる単純なFileListerクラスがあり、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イベントを処理する必要がありますか?

回答:


144

テキストボックスのバインディングでは、設定するだけですUpdateSourceTrigger=PropertyChanged


1
ありがとう!私が望んでいたのとまったく同じ簡単な解決策:)
luddet 2012年

私にとってはうまくいきませんでした...数値でない場合に備えて、テキストを以前の値に戻したいと思います。IsAsync = Trueを追加した場合にのみ、機能しました。
ilans 2016年

Visual Studioデザイナー(VS2015)で設定してみました。バインディングダイアログで、[その他の設定]エクスパンダを展開するとオプションが表示されます。ただし、BindingDirectionをDefault以外に設定しない限り、UpdateSourceTriggerは無効になります。
マーティンブラウン

32

UpdateSourceTriggerプロパティをに設定する必要がありますPropertyChanged

<TextBox Text="{Binding Source={StaticResource fileLister}, Path=Path, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" 
         Height="25" Margin="12,12,12,0" VerticalAlignment="Top"/>

-1

C#がなければ、XAMLではクラスではなくTextBoxで十分です。したがって、TextBlockのプロパティを監視します。ここで、TextBoxの長さを書き込む: Binding Text.Length

<StackPanel>
  <TextBox x:Name="textbox_myText" Text="123" />
  <TextBlock x:Name="tblok_result" Text="{Binding Text.Length, ElementName=textbox_myText}"/>
</StackPanel>

-2

突然、スライダーと関連するTextBox間のデータバインディングに問題が発生しました。ついに理由を見つけて修正することができました。私が使用するコンバーター:

using System;
using System.Globalization;
using System.Windows.Data;
using System.Threading;

namespace SiderExampleVerticalV2
{
    internal class FixCulture
    {
        internal static System.Globalization.NumberFormatInfo currcult
                = Thread.CurrentThread.CurrentCulture.NumberFormat;

        internal static NumberFormatInfo nfi = new NumberFormatInfo()
        {
            /*because manual edit properties are not treated right*/
            NumberDecimalDigits = 1,
            NumberDecimalSeparator = currcult.NumberDecimalSeparator,
            NumberGroupSeparator = currcult.NumberGroupSeparator
        };
    }

    public class ToOneDecimalConverter : IValueConverter
    {
        public object Convert(object value,
            Type targetType, object parameter, CultureInfo culture)
        {
            double w = (double)value;
            double r = Math.Round(w, 1);
            string s = r.ToString("N", FixCulture.nfi);
            return (s as String);
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            string s = (string)value;
            double w;
            try
            {
                w = System.Convert.ToDouble(s, FixCulture.currcult);
            }
            catch
            {
                return null;
            }
            return w;
        }
    }
}

XAMLの場合

<Window.Resources>
    <local:ToOneDecimalConverter x:Key="ToOneDecimalConverter"/>
</Window.Resources>

さらに定義されたTextBox

<TextBox x:Name="TextSlidVolume"
    Text="{Binding ElementName=SlidVolume, Path=Value,
        Converter={StaticResource ToOneDecimalConverter},Mode=TwoWay}"
/>

2
あなたは間違った質問にあなたの答えを投稿したと思います。元の質問には、スライダーに関する情報は含まれていません。
GrantByrne
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.