1

我有一个有几个按钮的 GridView。其中之一由以下模板定义:

<DataTemplate x:Name="SubjectItemTemplate">
        <Canvas Width="340" Height="170" VerticalAlignment="Top">
            <Controls:ThreeImageButton HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,0,0,0"
                                              NormalStateImageSource="{Binding NormalImage}"
                                              HoverStateImageSource="{Binding HoverImage}"
                                              PressedStateImageSource="{Binding PressedImage}" Command="{Binding Path=NavigateToUnitsPage}"
                CommandParameter="{Binding}" Canvas.Left="0" Canvas.Top="0">


        </Controls:ThreeImageButton>
    </Canvas>
</DataTemplate>

现在我有一个自定义控件,如您所见,称为 ThreeImageButton。当我单独使用该按钮时,它可以正常工作。但是当我在 DataTemplate 中有它时,它不会将属性绑定到后面的代码。

现在,我有

x:Name="MyThreeImageButton"

在自定义按钮定义中。我像这样连接到代码隐藏:

<TextBlock Text="{Binding ElementName=MyThreeImageButton, Path=NormalStateImageSource}"/>

(这只是显示文本的测试,在实际代码中,我会将图像源分配给元素引用的另一个属性)。

现在,TextBlock 中没有显示任何内容。我应该使用什么正确的绑定语法来访问我的属性?

谢谢!

编辑:我在 InitializeComponent 函数中设置变量,并且在 DependencyProperty 上使用 SetValue。

编辑:让我添加以下信息以更清楚

场景一:在 GridView 的 DataTemplate 中:

<UserControl CustomParameter="Literal Text">

在用户控件中:

<TextBlock Text="{Binding CustomParameter}">

在 UserControl .cs 中:this.DataContext = 这行得通!

场景二:在 GridView 的 DataTemplate 中:

<UserControl CustomParameter="{Binding ValueFromDataItem">

在用户控件中:

<TextBlock Text="{Binding CustomParameter}">

在 UserControl .cs 中:this.DataContext = this nope!

4

2 回答 2

0

我懂了,

因此,在用户控件中设置与自定义属性的双向绑定可能会很棘手,因为用户控件无法绑定到 CLR 属性。不仅如此,在用户控件上设置数据上下文也会对其内部的绑定产生意想不到的影响。

你可以用一点点代码来解决这些问题。基本上用依赖属性支持您的 CLR 属性,并在子元素而不是根用户控件上设置数据上下文。

看看这个样本。假设您有以下 MainPage。该 MainPage 最终将使用我们的自定义用户控件。因此,让我们设置舞台。

这是代码隐藏:

public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();
        this.DataContext = new /* your view model */
        {
            Title = Guid.NewGuid().ToString(),
        };
    }
}

在上面的代码中,我用一个简单的匿名类模拟了一个复杂的视图模型。像这样实现你自己的对你来说是愚蠢的,但同时对我来说用完整的脚手架构建一个简单的样本也是愚蠢的。我提出这个只是为了不会让你感到困惑——因为它看起来像是我在 prod 中建议这种方法。

这是 XAML:

<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
    <local:MyUserControl Text="{Binding Title}" />
</Grid>

在上面的 XAML 中,绝对没有什么特别之处。我已经在本地命名空间中引用了用户控件,我只是在这里声明它。

好的,现在我们有了控件的使用者,值得指出的是,在测试中开发人员可能会错误地认为他们的绑定正在工作,因为他们使用文字值进行测试。字面值绑定很好。它与打嗝的底层视图模型绑定。

让我们说另一件事,一些开发人员倾向于避免依赖属性,因为它需要更多的输入。人们记得 [kbd]propdp[/kbd] 是一个方便的 Visual Studio 代码片段,它可以为您生成一个依赖属性。

看看这个用户控件。它有两个控件,一个 TextBox 和一个 TextBlock,用于演示此绑定方法的 OneWay 和 TwoWay 功能。我们还在用户控件上实现了 INotifyPropertyChanged。在大多数情况下,在用户控件的情况下添加视图模型是多余的,因为用户控件已经像视图模型一样工作。这取决于开发人员,但对我来说似乎很愚蠢。

这是后面的代码:

public sealed partial class MyUserControl : UserControl, INotifyPropertyChanged
{
    public MyUserControl()
    {
        this.InitializeComponent();
    }

    // text property

    public string Text
    {
        get { return (string)GetValue(TextProperty); }
        set { SetValueDp(TextProperty, value); }
    }
    public static readonly DependencyProperty TextProperty =
        DependencyProperty.Register("Text", typeof(string), typeof(MyUserControl), null);

    // bindable

    public event PropertyChangedEventHandler PropertyChanged;
    void SetValueDp(DependencyProperty property, object value,
        [System.Runtime.CompilerServices.CallerMemberName] String propertyName = null)
    {
        SetValue(property, value);
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
}

在上面的 ode 中,我创建了一个“Text”属性并使用依赖属性支持它。为了重用,我还实现了 SetValueDp() 如果我有多个属性,可以一次又一次地使用它。尽管这个演示只有一个,但我想包含它,因为重复的逻辑当然应该像这样抽象出来。

这是 XAML:

<Grid Background="Black" DataContext="{Binding ElementName=userControl}">
    <StackPanel>
        <TextBox Text="{Binding Text, Mode=TwoWay}"
            MinHeight="100" Padding="15" FontWeight="Light" FontSize="50" />
        <TextBlock Text="{Binding Text}"
            MinHeight="100" Padding="15" FontWeight="Light" FontSize="50" />
    </StackPanel>
</Grid>

在上面的 XAML 中,就绑定而言,我没有做任何特别的事情。语法只是使用适合控件的模式绑定到 Text 属性。就像你平时做的那样。但是,值得注意的是 DataContext 没有设置在用户控件上。相反,它设置在网格上。事实上,除了用户控件之外,树中的任何控件都可以这样使用。只是不要设置用户控件的数据上下文。

顺便说一句,就是这样。

我已经对其进行了测试以确保它有效。在这里演示单向和双向绑定非常方便。我什至可以把它变成一个博客,以防其他开发人员想要找到它而没有发现这个问题。谢谢你的提问!

祝你好运!

于 2013-06-24T22:06:55.420 回答
-1

正如评论所暗示的那样,您的 DataTemplate 将项目的数据上下文放置到您要添加到列表中的任何对象中。这与周围的用户控件的数据上下文不同。如果要引用该数据上下文的命令,请在 DataTemplate 的绑定中执行以下操作:

{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Path=DataContext.NormalImage}

这就是说去寻找用户控件的祖先并使用它的数据上下文,然后寻找 NormalImage 属性。如果遇到问题,请检查输出窗口是否存在绑定错误。这对于查找绑定问题非常有帮助。

于 2013-06-19T14:21:40.820 回答