我有:
A.xaml
A.xaml.cs
MyuserControl.xaml
MyuserControl.xaml.cs
在A xaml中我创建了<MyuserControl x:Name="MyuserControl" />
在MyuserControl中DataGrid
我需要在A.xaml.cs中注册事件DataGrid.SelectionChanged
和描述。
public void DataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e){}
我需要在XAML中添加事件 这是怎么回事?
答案 0 :(得分:0)
A.xml.cs
你可以在构造函数中使用例如:
MyUserControl.DataGrid.SelectionChanged += new .....(DataGrid_SelectionChanged);
谢谢, 亚历克斯。