摘要:
this.but1.AddHandler(Button.ClickEvent,new RoutedEventHandler(OkButton_Click)); 阅读全文
摘要:
MainWindow mwin = new MainWindow(); Application.Current.MainWindow = mwin; this.Close(); mwin.Show(); 阅读全文
摘要:
一、考虑到大部分的splashscreen其实都只是一个图片,所以最简单的做法是,先导入一张图片,然后设置它的生成操作为“splash screen” 二、通过程序设置SplashScreen 阅读全文
摘要:
阅读全文
摘要:
方式一、通过当前控件名获取父级窗体 Window targetWindow = Window.GetWindow(button); 方式二、通过当前控件获取父级窗体 Window parentWindow = Window.GetWindow(this); 阅读全文