2011-01-24 102 views

回答

7

如何:

radioButton1.Click += new RoutedEventHandler(radioButton1_Click); 


private void radioButton1_Click(object sender, RoutedEventArgs e) 
{ 

} 
3
this.button1.Checked += ... 

this.button1.Unchecked += ... 
+2

但我是用最感兴趣... :) – user310291 2011-01-24 09:29:21

+4

Visual Studio中应填写...你。 – grantnz 2011-01-24 09:50:00

相关问题