private void btnSubmit_Click(object sender, RoutedEventArgs e) { int value = 0; // value = 3 * int.Parse(firstNameText.Text); Console.WriteLine("{0}", value); MyWindow win = new MyWindow(); win.ShowDialog(); }
private void Button_Click_1(object sender, RoutedEventArgs e) { MyWindow win = new MyWindow(); win.ShowDialog(); int total = 0; if (win.chkOne.IsChecked == true) { total += 1; } if (win.chkTwo.IsChecked == true) { total += 2; } if (win.chkThree.IsChecked == true) { total += 3; } if (win.chkFour.IsChecked == true) { total += 4; } if (win.chkFive.IsChecked == true) { total += 5; } if (win.chkSix.IsChecked == true) { total += 6; } MessageBox.Show(string.Format("Total = {0}", total), "Total", MessageBoxButton.OK); }