8

我制作了一个用户控件,它打算每隔几秒钟使用来自串行端口的数据更新一次。这个 UserControl 应该非常简单,由一个用于字段名称的标签和另一个包含字段值的标签组成。我说它应该很简单,但它不起作用。它根本不更新,甚至不显示字段名称。

下面是代码:

public partial class LabeledField : UserControl {

    public LabeledField() {
        InitializeComponent();
    }

    public string fieldName { 
        get { return fieldNameLabel.Content.ToString(); } 
        set { fieldNameLabel.Content = value; } 
    }

    public string fieldValue { 
        get { return (string)GetValue(fieldValueProperty); } 
        set { SetValue(fieldValueProperty, value); }
    }

    public static readonly DependencyProperty fieldValueProperty =
        DependencyProperty.Register(
            "fieldValue", 
            typeof(string), 
            typeof(LabeledField),
            new FrameworkPropertyMetadata(
                "No Data"
            )
        )
    ;
}

这是 XAML:

<UserControl x:Class="DAS1.LabeledField" Name="LF"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Orientation="Horizontal">
    <Label Width="100" Height="30" Background="Gray" Name="fieldNameLabel" />
    <Label Width="100" Height="30" Background="Silver" Name="fieldValueLabel" Content="{Binding fieldValue}" />
</StackPanel>

这是引用 UserControl 的 Window 的 XAML。首先是标题:

<Window x:Class="DAS1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:me="clr-namespace:DAS1"
Title="Window1" Height="580" Width="780">

然后是 UserControl 本身:

<me:LabeledField fieldName="Test" Width="200" Height="30" fieldValue="{Binding businessObjectField}"/>

如果我知道要问一个更具体的问题,我会——但谁能告诉我为什么这不起作用?

4

3 回答 3

9

事实证明,在用户控件的 XAML 中,绑定被错误地指定。

原来是:

<Label Width="100" Height="30" Name="fieldValueLabel" Content="{Binding fieldValue}" />

但是我没有指定 fieldValue 所属的元素。应该是(假设我的用户控件名为“LF”:

<Label Width="100" Height="30" Name="fieldValueLabel" Content="{Binding ElementName=LF, Path=fieldValue}" />
于 2009-07-21T14:43:18.027 回答
5

如果要绑定到控件的属性,则应在绑定中指定。如果未明确指定绑定的源,则相对于绑定进行评估DataContext,因此您的绑定不会绑定到您的控件,而是绑定到继承的上下文(可能缺少您要绑定的属性)。你需要的是:

<Label Width="100" Height="30" Name="fieldValueLabel"
       Content="{Binding Path=fieldValue, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type DAS1.LabeledField}}}" />
于 2009-07-17T20:22:34.407 回答
4

你真的不需要你的用户控件的依赖属性,事实上你应该努力保持用户控件在代码隐藏中没有任何特殊,应该使用自定义控件。

您应该像这样定义您的 UserControl(没有任何代码):

<UserControl x:Class="DAS1.LabeledField"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <StackPanel Orientation="Horizontal">
        <Label Width="100" Height="30" Name="fieldNameLabel" Content="{Binding fieldName}" />
        <Label Width="100" Height="30" Name="fieldValueLabel" Content="{Binding field}" />
</StackPanel>

然后,确保您的业务对象实现了 INotifyPropertyChanged,因为您不能有效地从您的业务对象进行更新,除非至少修改它这么多。这fieldName只是一个示例,您可以如何将标签上的显示名称自动绑定到业务对象上的属性。

然后,只需确保您的 UserControl 的 DataContext 是您的业务对象。

这将如何运作?Label.Content 属性是一个 DependencyProperty,将支持绑定本身。您的业​​务对象实现 INotifyPropertyChanged 并因此支持对绑定的更新 -没有它,绑定系统不会在您的字段值更改时收到通知,无论您是否将其绑定到一端的 DependencyProperty

如果您想在其他地方重用此用户控件,只需将所需的业务对象实例放置到所需的 LabeledField 控件的 DataContext 中。绑定将从 DataContext 中自行连接。

于 2009-07-17T22:14:33.353 回答