代码隐藏文本框绑定
CodeBehind TextBox Binding
我的目标是用后面的代码替换 xaml 视图中的 <TextBox Text={Binding TopTextContent} />
(按原样工作):
public partial class MyView: UserControl
{
public MyView()
{
InitializeComponent();
// Supposed to replace: // <TextBox Text={Binding TopTextContent} />
InputContextMenu("Top Text", "TopTextContent");
}
private void InputContextMenu([NotNull] string header, [NotNull] string propName)
{
var textBox = new TextBox
{
MaxLength = 12,
Width = 80,
FocusVisualStyle = null
};
textBox.SetBinding(
TextBox.TextProperty,
new Binding
{
Path = new PropertyPath(propName),
Source = DataContext, // (MyView)DataContext didn't work as well
Mode = BindingMode.TwoWay
}
);
CodeBehindTextInputs.Items.Add(
new MenuItem
{
Header = header,
Focusable = false,
Items = {textBox}
}
);
}
}
据我所知,它应该可以工作但没有,该字段确实出现但输入字段为空并且修改它不会修改它应该绑定到的值。
Snoop 显示为红色:
我不确定如何进一步调试它或我做错了什么。
我还没有完全理解它,但看起来我的 DataContext 确实在构造函数之后被填充了(所以它仍然是 null)。
我借助 DataContextChanged
事件解决了这个问题:
public SpecificInformationView()
{
InitializeComponent();
DataContextChanged += OnDataContext;
}
private void OnDataContext(object sender, DependencyPropertyChangedEventArgs e)
{
InputContextMenu("Top Text", "TopTextContent");
}
不要明确设置绑定的来源。 Binding 将自动使用 TextBox 的 DataContext 作为源对象 - 它从其父视图元素继承其值 - 即使稍后设置它也是如此:
textBox.SetBinding(
TextBox.TextProperty,
new Binding
{
Path = new PropertyPath(propName),
Mode = BindingMode.TwoWay
});
我的目标是用后面的代码替换 xaml 视图中的 <TextBox Text={Binding TopTextContent} />
(按原样工作):
public partial class MyView: UserControl
{
public MyView()
{
InitializeComponent();
// Supposed to replace: // <TextBox Text={Binding TopTextContent} />
InputContextMenu("Top Text", "TopTextContent");
}
private void InputContextMenu([NotNull] string header, [NotNull] string propName)
{
var textBox = new TextBox
{
MaxLength = 12,
Width = 80,
FocusVisualStyle = null
};
textBox.SetBinding(
TextBox.TextProperty,
new Binding
{
Path = new PropertyPath(propName),
Source = DataContext, // (MyView)DataContext didn't work as well
Mode = BindingMode.TwoWay
}
);
CodeBehindTextInputs.Items.Add(
new MenuItem
{
Header = header,
Focusable = false,
Items = {textBox}
}
);
}
}
据我所知,它应该可以工作但没有,该字段确实出现但输入字段为空并且修改它不会修改它应该绑定到的值。
Snoop 显示为红色:
我不确定如何进一步调试它或我做错了什么。
我还没有完全理解它,但看起来我的 DataContext 确实在构造函数之后被填充了(所以它仍然是 null)。
我借助 DataContextChanged
事件解决了这个问题:
public SpecificInformationView()
{
InitializeComponent();
DataContextChanged += OnDataContext;
}
private void OnDataContext(object sender, DependencyPropertyChangedEventArgs e)
{
InputContextMenu("Top Text", "TopTextContent");
}
不要明确设置绑定的来源。 Binding 将自动使用 TextBox 的 DataContext 作为源对象 - 它从其父视图元素继承其值 - 即使稍后设置它也是如此:
textBox.SetBinding(
TextBox.TextProperty,
new Binding
{
Path = new PropertyPath(propName),
Mode = BindingMode.TwoWay
});