摘要:
1. 部分控件的Text属性,变成了 Content属性 如: winform中,Button.Text = "abc"; wpf中,Button.Content = "abcd";2. wpf中控件的控件属性,由 boolean类型的Visiable 改成 枚举类型的 Visibil... 阅读全文
摘要:
可以看到wpf中所有的事件都是这个格式: private void btnTest_Click(object sender, RoutedEventArgs e) { Button btn = (Button)sender; btn.Content = "i am the sour... 阅读全文