如何在父项中定义的用户控件中注册事件?

时间:2011-05-21 22:45:04

标签: c# wpf silverlight

我有:

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中添加事件 这是怎么回事?

1 个答案:

答案 0 :(得分:0)

A.xml.cs

你可以在构造函数中使用例如:

MyUserControl.DataGrid.SelectionChanged += new .....(DataGrid_SelectionChanged);

谢谢, 亚历克斯。