C# Can';t在Windows运行时组件库中的UserControl中创建依赖项属性

C# Can';t在Windows运行时组件库中的UserControl中创建依赖项属性,c#,data-binding,windows-runtime,winrt-xaml,C#,Data Binding,Windows Runtime,Winrt Xaml,我想在用户控件内创建数据绑定属性。此用户控件包含在一个项目“Windows运行时组件”中。我使用下面的代码创建属性 public MyItem CurrentItem { get { return (MyItem)GetValue(CurrentItemProperty); } set { SetValue(CurrentItemProperty, value); } } // Using a DependencyProperty as the backing store fo

我想在用户控件内创建数据绑定属性。此用户控件包含在一个项目“Windows运行时组件”中。我使用下面的代码创建属性

public MyItem CurrentItem
{
    get { return (MyItem)GetValue(CurrentItemProperty); }
    set { SetValue(CurrentItemProperty, value); }
}

// Using a DependencyProperty as the backing store for CurrentItem. 
// This enables animation, styling, binding, etc...
public static readonly DependencyProperty CurrentItemProperty =
    DependencyProperty.Register("CurrentItem", typeof(MyItem), typeof(CollapseUserControl), new PropertyMetadata(null));
当我编译这个项目时,我发现了下面的错误

Type 'HierachyLib.CollapseUserControl' contains externally visible field 'HierachyLib.CollapseUserControl.CurrentItemProperty'.  Fields can be exposed only by structures.
更新1-整个课程的源代码

public sealed partial class CollapseUserControl : UserControl, IHierarchyHeightFix
{
    public MyItem CurrentItem
    {
        get { return (MyItem)GetValue(CurrentItemProperty); }
        set { SetValue(CurrentItemProperty, value); }
    }

    // Using a DependencyProperty as the backing store for CurrentItem.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty CurrentItemProperty =
        DependencyProperty.Register("CurrentItem", typeof(MyItem), typeof(CollapseUserControl), new PropertyMetadata(null));

    Boolean viewState = true;

    public CollapseUserControl()
    {
        this.DataContext = CurrentItem;
        this.InitializeComponent();
        this.Loaded += CollapseUserControl_Loaded;
    }

    void CollapseUserControl_Loaded(object sender, RoutedEventArgs e)
    {
        LoadData();
        if (this.Height.Equals(double.NaN))
        {
            this.Height = 50;
        }
        //this.Height = 50;
        //this.Width = double.NaN;
    }

    private void LoadData()
    {
        if (CurrentItem != null)
        {
            if (CurrentItem.IsValueControl)
            {
                ChildItemContainer.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
                ValueItem.Visibility = Windows.UI.Xaml.Visibility.Visible;

                ValueItem.Text = CurrentItem.Value;
            }
            else
            {
                ChildItemContainer.Visibility = Windows.UI.Xaml.Visibility.Visible;
                ValueItem.Visibility = Windows.UI.Xaml.Visibility.Collapsed;

                ChildItems.ItemsSource = CurrentItem.Childs;
                //foreach (MyItem item in CurrentItem.Childs)
                //{
                //    CollapseUserControl control = new CollapseUserControl();
                //    control.CurrentItem = item;
                //    ChildItems.Items.Add(control);
                //}
                ChildItems.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
            }
        }

    }

    private void Button_Click_1(object sender, RoutedEventArgs e)
    {
        if (viewState)
        {
            ChildItems.Visibility = Windows.UI.Xaml.Visibility.Visible;
            //show.Begin();
        }
        else
        {
            //hide.Begin();
            ChildItems.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
        }
        viewState = !viewState;
    }

    private void hide_Completed_1(object sender, object e)
    {
        ChildItems.Visibility = Windows.UI.Xaml.Visibility.Collapsed;
    }

    private void show_Completed_1(object sender, object e)
    {
    }
}
更新2:XAML代码

<UserControl
x:Class="HierachyLib.CollapseUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:HierachyLib"
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">
<UserControl.Resources>

    <DataTemplate x:Key="ReviewsItemsTemplate">
        <StackPanel Margin="0,0,0,20">
            <TextBlock Text="TEST" />
            <TextBlock Text="TEST"/>
        </StackPanel>
    </DataTemplate>
    <ItemsPanelTemplate x:Key="ReviewsItemsPanelTemplate">
        <StackPanel Margin="0,0,0,0" Width="Auto"/>
    </ItemsPanelTemplate>
</UserControl.Resources>
<!--xmlns:my="clr-namespace:HierarchyCollapse"-->
<Grid>
    <Grid Name="ChildItemContainer">
        <Grid.RowDefinitions>
            <RowDefinition Height="40" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <Rectangle Grid.Row="0" Margin="0,0,70,0" Fill="Transparent" Canvas.ZIndex="4"/>
        <ListView HorizontalContentAlignment="Stretch" Background="#FF6599CD" CanDragItems="False" CanReorderItems="False" Grid.Row="0"
                  ScrollViewer.VerticalScrollBarVisibility="Hidden" ScrollViewer.VerticalScrollMode="Disabled" 
                  ScrollViewer.HorizontalScrollBarVisibility="Hidden" ScrollViewer.HorizontalScrollMode="Disabled">
            <ListView.ItemContainerStyle>
                <Style TargetType="ListViewItem">
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate TargetType="ListViewItem">
                                <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Height="40">
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="*" />
                                            <ColumnDefinition Width="50" />
                                        </Grid.ColumnDefinitions>
                                        <TextBlock Text="Sample Text" FontSize="17" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,10,0,0" Canvas.ZIndex="10"/>
                                        <Image PointerPressed="Button_Click_1" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" Source="Assets/arrw_right.png" Stretch="None" Margin="0,0,10,0"/>
                                    </Grid>
                                </Border>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>
                </Style>
            </ListView.ItemContainerStyle>
            <ListViewItem />
        </ListView>
        <ListView Grid.Row="1"
            IsHitTestVisible="True"
            CanDragItems="True" 
            CanReorderItems="True" 
            AllowDrop="True" 
            Name="ChildItems" 
            SelectionMode="None"
            IsItemClickEnabled="False">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <local:CollapseUserControl CurrentItem="{Binding RelativeSource={RelativeSource Self}}" />
                </DataTemplate>
            </ListView.ItemTemplate>
            <ListView.ItemContainerStyle>
                <Style TargetType="ListViewItem">
                    <Setter Property="Padding" Value="0"/>
                    <Setter Property="Margin" Value="0"/>
                </Style>
            </ListView.ItemContainerStyle>
        </ListView>
    </Grid>
    <TextBlock Name="ValueItem" Margin="0,0,0,0" Height="40" FontSize="36"></TextBlock>
</Grid>

错误来自

似乎您可以将属性标记为内部,然后它开始工作

internal static readonly DependencyProperty CurrentItemProperty...
编辑*

一个更好的方法似乎是平台控件所做的事情,就是使用一个实际的CLR属性来公开
dependencProperty
对象,类似这样:

private static readonly DependencyProperty CurrentItemPropertyField =
    DependencyProperty.Register/RegisterAttached(...);

internal static DependencyProperty CurrentItemProperty
{
    get
    {
        return CurrentItemPropertyField;
    }
}
public static DependencyProperty CurrentItemPropertyField { get; } = 
        DependencyProperty.Register("Value", typeof(string), typeof(MyControl), new PropertyMetadata("{No Value}"));

这允许诸如Blend之类的工具发现属性。

您可以使用自动属性设置默认值(来自c#5),如下所示:

private static readonly DependencyProperty CurrentItemPropertyField =
    DependencyProperty.Register/RegisterAttached(...);

internal static DependencyProperty CurrentItemProperty
{
    get
    {
        return CurrentItemPropertyField;
    }
}
public static DependencyProperty CurrentItemPropertyField { get; } = 
        DependencyProperty.Register("Value", typeof(string), typeof(MyControl), new PropertyMetadata("{No Value}"));

也适用于UWP应用程序

您能展示您的课程的全部代码吗?谢谢您的快速回复。这个问题是更新了类的源代码。非常感谢你的回答,它解决了我的问题,但现在我得到了新的错误。首先,我创建的这个控件是递归控件(我只是尝试创建treeview类型的用户控件)。现在我从XAML“未能从文本“”创建“Windows.UI.XAML.PropertyPath”中得到此错误。我将更新有问题的xaml代码。我还注意到,我提到的新错误仅适用于“Windows运行时组件”项目。对于普通的Windows应用商店应用程序项目,您的解决方案非常有效。我不知道。WinRT组件与.NET库不同。他们需要从C++和JavaScript中消费,所以有很多额外的需求。谢谢你的回答,救了我一天。我删除了“Windows运行时组件”项目,并在应用程序的单独文件夹中添加了用户控件。