将文本框数据绑定到代码隐藏中的字符串失败

Data binding TextBox to string in code behind fails

我正在尝试将字符串 属性 绑定到 XAML 中文本框的文本字段。我在 UserControl 中执行此操作。我搜索了 Whosebug 和互联网,发现了各种相关主题,一些示例:

我已尽我所能遵循这些示例中的代码,但输入 属性 似乎没有绑定到文本框。我已经尝试了各种不同的方法来设置 DataContext,包括从后面的代码中尝试,但它仍然无法正常工作。

我缺少什么,这是一个问题,因为它是一个用户控件吗?

调用了SearchInputTextBox_TextChanged事件中的代码,但始终输出空字符串。如果我在输入集部分调用 Debug.WriteLine,什么也不会发生。

XAML 文件:

<UserControl x:Class="DatabaseViewerApp.View.SearchBox"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="70" d:DesignWidth="240"
             x:Name="Control"> 
   <Border Padding="5" Background="#303030">
        <StackPanel>
            <TextBlock Text="Search" Margin="0,0,0,0" FontSize="20px" Foreground="White"></TextBlock>
            <TextBox Name="SearchInputTextBox" Text="{Binding ElementName=Control, Path=Input}" Margin="0,5" FontSize="15px" TextChanged="SearchInputTextBox_TextChanged"></TextBox>
        </StackPanel>
    </Border>
</UserControl>

C#文件:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace DatabaseViewerApp.View
{
   /// <summary>
   /// Interaction logic for SearchBox.xaml
   /// </summary>
   public partial class SearchBox : UserControl, INotifyPropertyChanged
   {
      public event PropertyChangedEventHandler PropertyChanged;

      private string input;

      public string Input
      {
         get { return input; }
         set
         {
            if (value != input)
            {
               input = value;
               NotifyPropertyChanged("Input");
            }
         }
      }

      public void NotifyPropertyChanged(string propertyName)
      {
         if (this.PropertyChanged != null)
         {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
         }
      }

      public SearchBox()
      {
         InitializeComponent();
      }

      private void SearchInputTextBox_TextChanged(object sender, TextChangedEventArgs e)
      {
         Debug.WriteLine(Input);
      }
   } 
}

试试这个:

     <TextBox Name="SearchInputTextBox" 
        Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, 
        AncestorType=UserControl},Path=Input}" 
        Margin="0,5" FontSize="15px" TextChanged="SearchInputTextBox_TextChanged">
     </TextBox>

我认为您的问题不是它无法正常工作...问题是您可能没有正确测试它。您的代码在新的 WPF 解决方案中对我有用。您可能缺少的是,当您离开焦点时,文本绑定会得到更新。相反,只要将文本输入到文本框中,就会触发 TextChanged 事件。

所以,发生的事情是当 TextChanged 事件被触发时,绑定尚未更新。如果您尝试在 属性 setter 中放置一个断点,然后更改文本框中的一些文本,并将焦点移出该控件,您应该会看到它被击中。

顺便说一句,将文本绑定到后面代码中的 属性 没有多大意义,因为可以从那里直接访问 UI 元素。