标签:
可以看到wpf中所有的事件都是这个格式:
private void btnTest_Click(object sender, RoutedEventArgs e)
{
Button btn = (Button)sender;
btn.Content = "i am the soure contrl";
}
其中的sender 指的是事件源,也就是触发该事件的控件
标签:
原文地址:http://www.cnblogs.com/tommy-huang/p/4598769.html