using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;namespace WpfApplication5{ /// <summary> /// MainWindow.xaml 的交互逻辑 /// </summary> public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void bnt1_Click(object sender, RoutedEventArgs e) { wws wws = new wws(); wws.ShowDialog(); } private void bnt2_Click(object sender, RoutedEventArgs e) { wws1 wws = new wws1(); wws.ShowDialog(); } private void bnt3_Click(object sender, RoutedEventArgs e) { wws2 wws = new wws2(); wws.ShowDialog(); } private void bnt4_Click(object sender, RoutedEventArgs e) { wws3 wws = new wws3(); wws.ShowDialog(); } }}
评论