gpt4 book ai didi

c# - 如何为绑定(bind)正确设置 WPF UserControl

转载 作者:太空宇宙 更新时间:2023-11-03 19:14:35 26 4
gpt4 key购买 nike

我想创建一个 UserControl,它本质上是一个带有 TextBox 的标签。现在我希望能够将 TextBox.Text 绑定(bind)到不同的值。

为此,我在我的 UserControl 中创建了一个 DependencyProperty,现在正尝试将某些内容绑定(bind)到新创建的 DependencyProperty,但文本似乎没有得到更新。

我的 UserControl1.xaml 如下所示:

<UserControl x:Class="WpfApplication1.UserControl1"
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="48" d:DesignWidth="200">
<Grid>
<WrapPanel Height="48" HorizontalAlignment="Left" Name="wrapPanel1" VerticalAlignment="Top" Width="200">
<Label Content="Label" Height="48" Name="label1" Width="100" />
<TextBox Height="48" Name="textBox1" Width="100" />
</WrapPanel>
</Grid>

我的 UserControl1.xaml.cs 看起来像这样:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
using System.Diagnostics;

namespace WpfApplication1
{


/// <summary>
/// Interaction logic for UserControl1.xaml
/// </summary>
public partial class UserControl1 : UserControl
{
private string value;
public string Value
{
get { return value; }
set
{
this.value = value;
textBox1.Text = value;
Trace.TraceInformation("value set in UserControl1");
}
}
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register("Value", typeof(string), typeof(UserControl1));
public UserControl1()
{
InitializeComponent();
}
}
}

我像这样使用 UserControl:

<my:UserControl1 x:Name="userControl11" Value="{Binding Path=Name}" />

DataContext 设置为具有 Name 属性并为此属性实现 INotifyPropertyChanged 的​​对象。

最佳答案

您将 TextBox 的 Text 和 UserControl 的 Value 之间的连接放在了错误的位置。 CLR 属性是为了方便而使用的,但绑定(bind)引擎不使用它。您需要在 XAML 或代码后面将 TextBox 的文本显式绑定(bind)到 Usercontrol 的值,例如(假设您为用户控件指定一个名为 root 的名称):

<TextBox x:Name="textBox1" Text="{Binding Path=Value, ElementName=root}"/>

关于c# - 如何为绑定(bind)正确设置 WPF UserControl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17995743/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com