DependencyProperty 字符串,键入时 onChange

发布于 2024-10-12 20:22:04 字数 658 浏览 1 评论 0原文

我想创建一个简单的搜索框,所以我有一个文本框,当有人输入搜索词时我想执行搜索方法。

问题是,当我在文本框中单击更改时,onChange 方法就会执行,并且我希望在键入时执行 onChange 事件。

<TextBox Text="{Binding SearchTerm}" />

public static readonly DependencyProperty SearchTermProperty =
            DependencyProperty.Register("SearchTerm", typeof(string), typeof(MainWindow), new PropertyMetadata(string.Empty, OnCaptionPropertyChanged));
        private static void OnCaptionPropertyChanged(DependencyObject dependencyObject, 
               DependencyPropertyChangedEventArgs e) 
        {
            ((MainWindow)dependencyObject).SearchTracks(e.NewValue.ToString());
        }

谢谢!

I want to create a simple searchbox, so I have a textbox and when someone types a searchterm I want to execute the search method.

The problem is that the onChange method executes when I change click out of the textbox and I want the onChange event executed while I am typing.

<TextBox Text="{Binding SearchTerm}" />

public static readonly DependencyProperty SearchTermProperty =
            DependencyProperty.Register("SearchTerm", typeof(string), typeof(MainWindow), new PropertyMetadata(string.Empty, OnCaptionPropertyChanged));
        private static void OnCaptionPropertyChanged(DependencyObject dependencyObject, 
               DependencyPropertyChangedEventArgs e) 
        {
            ((MainWindow)dependencyObject).SearchTracks(e.NewValue.ToString());
        }

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

天涯沦落人 2024-10-19 20:22:05
<TextBox Text="{Binding SearchTerm, UpdateSourceTrigger=PropertyChanged}" />
<TextBox Text="{Binding SearchTerm, UpdateSourceTrigger=PropertyChanged}" />
天生の放荡 2024-10-19 20:22:05

您必须将 UpdateSourceTrigger 属性更改为属性已更改。

<TextBox Text="{Binding SearchTerm,UpdateSourceTrigger=PropertyChanged}" />

如果您还想跟踪特殊键,则必须注册PreviewKeyDown - 事件。

You must change the UpdateSourceTrigger attribute to ProperyChanged.

<TextBox Text="{Binding SearchTerm,UpdateSourceTrigger=PropertyChanged}" />

If you also want to track special keys, you have to register to the PreviewKeyDown-Event.

回眸一笑 2024-10-19 20:22:05

尝试使用 PreviewTextInput 代替。

Try using PreviewTextInput instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文