数据绑定部分适用于 UserControl 中的自定义依赖项 属性

Databinding partially working to custom dependency property in UserControl

您好,感谢您抽出宝贵时间。

我有一个特殊的问题。我创建了一个 usercontol,它有一些自定义依赖属性。

如果我实现用户控件,并绑定到静态文本。一切正常。

但是,如果我尝试将其设置为所选对象属性的值。没用。

这是我在输出中遇到的错误 window:

Error: BindingExpression path error: 'SelectedUseCase' property not found on 'Helper.UserControls.UseCasePropertyDisplay'. BindingExpression: Path='SelectedUseCase.Name' DataItem='Helper.UserControls.UseCasePropertyDisplay'; target element is 'Helper.UserControls.UseCasePropertyDisplay' (Name='null'); target property is 'Text' (type 'String')

用户控件:
https://github.com/Toudahl/SoftwareDesignHelper/blob/master/Helper/UserControls/DisplayAndEditControl.xaml

<UserControl
    x:Class="Helper.UserControls.UseCasePropertyDisplay"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Helper.UserControls"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300"
    d:DesignWidth="400"
    DataContext="{Binding RelativeSource={RelativeSource Self}}">

    <StackPanel Orientation="Horizontal"
                Margin="260,0,0,0">
        <TextBlock Text="{Binding Label}"
                   Style="{StaticResource UseCaseTextBlock}"
                   x:Name="textblock_label"/>
        <TextBlock x:Name="textblock_propertyContent"
                   Text="{Binding Text}"
                   Style="{StaticResource UseCaseFrameWorkTextElement}"
                   DoubleTapped="textblock_DoubleTapped" />
        <TextBox x:Name="textbox_propertyContent"
                 Text="{Binding Text}"
                 Visibility="Collapsed"
                 Style="{StaticResource UseCaseTextBox}"
                 LostFocus="textbox_LostFocus" />
    </StackPanel>
</UserControl>

在代码隐藏中删除依赖属性:
https://github.com/Toudahl/SoftwareDesignHelper/blob/master/Helper/UserControls/DisplayAndEditControl.xaml.cs

    public static readonly DependencyProperty TextProperty = DependencyProperty.Register(
            "Text",
            typeof(string),
            typeof(UseCasePropertyDisplay),
            new PropertyMetadata(null));

    public static readonly  DependencyProperty LabelProperty = DependencyProperty.Register(
        "Label",
        typeof(string),
        typeof(UseCasePropertyDisplay),
        new PropertyMetadata(null));

    public string Text
    {
        get { return (string)GetValue(TextProperty); }
        set {SetValue(TextProperty, value);}
    }

    public string Label
    {
        get { return (string)GetValue(LabelProperty); }
        set { SetValue(LabelProperty, value);}
    }

这就是我在视图中实现它的方式:
https://github.com/Toudahl/SoftwareDesignHelper/blob/master/Helper/ViewsAndViewModels/ViewUseCases.xaml

<uc:UseCasePropertyDisplay Label="Name" Text="{Binding SelectedUseCase.Name, Mode=TwoWay}" />

从这里阅读非常相似的问题,我猜这与我设置上下文的方式有关。但是,已经提供给人们的解决方案(将相对来源设置为祖先)对我不起作用。因为它在我的平台上不可用。 我不太确定从这里去哪里,因为这是我第一次尝试使用用户控件,也是我第一次使用依赖属性。 几周后才开学,所以我无法联系到我的老师。

不是将 DataContext 设置为全局,而是将第一个 ui 元素设置为继承的 DataContext: DataContext="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"

如您所写,您不能使用 FindAncestor,因此您可以尝试使用名称并引用它:

<UserControl
    x:Class="Helper.UserControls.UseCasePropertyDisplay"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Helper.UserControls"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300"
    d:DesignWidth="400"
    x:Name="Root">

    <StackPanel DataContext="{Binding ElementName=Root}"                                
                Orientation="Horizontal"
                Margin="260,0,0,0">
        <TextBlock Text="{Binding Label}"
                   Style="{StaticResource UseCaseTextBlock}"
                   x:Name="textblock_label"/>
        <TextBlock x:Name="textblock_propertyContent"
                   Text="{Binding Text}"
                   Style="{StaticResource UseCaseFrameWorkTextElement}"
                   DoubleTapped="textblock_DoubleTapped" />
        <TextBox x:Name="textbox_propertyContent"
                 Text="{Binding Text}"
                 Visibility="Collapsed"
                 Style="{StaticResource UseCaseTextBox}"
                 LostFocus="textbox_LostFocus" />
    </StackPanel>
</UserControl>