我试图将字符串属性绑定到XAML中TextBox的文本字段。我在UserControl中这样做。我一直在搜索StackOverflow和互联网,并找到了各种相关主题,例如:
我尽可能地遵循这些示例中的代码,但Input属性似乎没有绑定到TextBox。我已尝试过各种不同的设置DataContext的方法,包括后面的代码,但它仍无效。
我错过了什么,这是一个问题,因为它是一个UserControl?
调用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);
}
}
}
答案 0 :(得分:2)
我认为你的问题不是它不起作用......问题是你可能没有正确测试它。您的代码适用于新的WPF解决方案。您可能缺少的是当您离开焦点时文本绑定会更新。相反,只要文本输入到文本框中,TextChanged事件就会被触发。
因此,发生的事情是,当触发TextChanged事件时,绑定尚未更新。如果您尝试在属性设置器中放置断点,然后在文本框中更改一些文本,并将焦点移出该控件,您应该会看到它被击中。
顺便说一下,将Text绑定到后面的代码中的属性没有多大意义,因为可以直接从那里访问UI元素。
答案 1 :(得分:0)
试试这个:
<TextBox Name="SearchInputTextBox"
Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor,
AncestorType=UserControl},Path=Input}"
Margin="0,5" FontSize="15px" TextChanged="SearchInputTextBox_TextChanged">
</TextBox>