我Usercontrols
在我的WPF Application
! 我想通过另一个访问一个用户控件的功能。我只是做了另一个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 -- 父用户控件
XAML 文件
<dxdo:LayoutPanel Caption="Panel" Name="layoutPanel2">
<local:EditStory x:Name="editstorytab"/>
</dxdo:LayoutPanel>
.CS 文件
public AllStories()
{
InitializeComponent();
editstorytab.MyParent = this;
}
EditStory——子用户控件
.cs 文件
public AllStories MyParent { get; set; }
public EditStory(AllStories parent)
{
InitializeComponent();
MyParent = parent;
EditDataRefresh();
}
谁能解决我的问题?:)