我在Usercontrols
中创建了两个WPF Application
!我想通过其他访问一个Usercontrol的功能。我刚刚创建了一个usercontrol
其他的父级,并尝试访问其他的功能,但它生成了错误:
Error 2 The type 'EditStory' cannot have a Name attribute. Value types and types without a default constructor can be used as items within a ResourceDictionary.
我的代码是:
AllStories - Parent UserControl
XAML的文件
<dxdo:LayoutPanel Caption="Panel" Name="layoutPanel2">
<local:EditStory x:Name="editstorytab"/>
</dxdo:LayoutPanel>
.CS文件
public AllStories()
{
InitializeComponent();
editstorytab.MyParent = this;
}
EditStory - Child UserControl
.Cs文件
public AllStories MyParent { get; set; }
public EditStory(AllStories parent)
{
InitializeComponent();
MyParent = parent;
EditDataRefresh();
}
任何人都可以解决我的问题吗? :)