M
mp
in help a button click event is shown as:
private void button1_Click(object sender, System.EventArgs e)
{
// Add event-handler code here.
}
if i add the event in the ide i getprivate void button1_Click(object sender,
RoutedEventArgs e){//Add event-handler code here.}
is the difference because
the help is talking about windows forms, and I'm trying wpf?
private void button1_Click(object sender, System.EventArgs e)
{
// Add event-handler code here.
}
if i add the event in the ide i getprivate void button1_Click(object sender,
RoutedEventArgs e){//Add event-handler code here.}
is the difference because
the help is talking about windows forms, and I'm trying wpf?