1

我不知道如何基于 aPath在内部设置 a :UserControlParameter

用户控制:

<UserControl x:Class="WpfApplication3.TestControl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:diagnostics="clr-namespace:System.Diagnostics;assembly=WindowsBase">
    <Grid>
        <TextBox Text="{Binding Path=MyPath}"/>
    </Grid>
</UserControl>

后面的代码:

   public partial class TestControl : UserControl
    {
        public string MyPath
        {
            get { return (string)GetValue(MyPathProperty); }
            set { SetValue(MyPathProperty, value); }
        }
        public static readonly DependencyProperty MyPathProperty =
            DependencyProperty.Register("MyPath", typeof(string), typeof(TestControl), new UIPropertyMetadata(""));
    }

以及我打算如何使用它:

<local:TestControl MyPath="FirstName"></local:TestControl>

DataContext将从父对象中获取,并包含一个类,里面User有一个FirstName属性。

目标是拥有一个可以绑定到任何路径的用户控件。我知道这一定非常简单,但我对这项技术很陌生,我找不到解决方案。

4

2 回答 2

1

我终于设法做到了,在代码中:

private static void MyPathChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
    TestControl tc = d as TestControl;
    Binding myBinding = new Binding("MyDataProperty");
    myBinding.Mode = BindingMode.TwoWay;
    myBinding.Path = new PropertyPath(tc.MyPath);
    tc.txtBox.SetBinding(TextBox.TextProperty, myBinding);
}

public static readonly DependencyProperty MyPathProperty =
    DependencyProperty.Register("MyPath",
        typeof(string),
        typeof(TestControl),
        new PropertyMetadata("", MyPathChanged));

用户控件现在有一个没有绑定的文本框:

 <TextBox x:Name="txtBox"></TextBox> 

就是这样。

于 2009-02-09T15:03:26.643 回答
1

当您在 XAML 中编写时:

<TextBox Text="{Binding Path=MyPath}"/>

这试图将您绑定到控件的DataContext的 MyPath 属性。

要绑定到控件自己的属性,我想你应该这样写:

<TextBox Text="{Binding Path=MyPath, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>

附近有一张备忘单,以防万一;)

于 2009-10-01T17:04:37.040 回答