本文介绍了c#WPF使用MainWindow.xaml.cs中的第二个window2.xaml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我想知道的是,我是否可以编写第二个window2.xaml的代码,我已经从"第一个"添加了该代码。 MainWindow.xaml.cs。 通常当你添加一个新窗口时,你必须在新窗口中编写代码2.xaml.cs 但是我想编写MainWindow.xaml.xs中的所有内容。我想在window2.xaml上创建一个新按钮并在MainWindow.xaml.cs上编码 答案是创建用户控件吗?如果是这样,你怎么做? ex:   public partial class MainWindow:Window       {             public MainWindow()       {           InitializeComponent();       }¥b $ b          私人无效 SecondWin2_Click(对象发件人,RoutedEventArgs e)       {           SecondWindow win2 = new SecondWindow();           win2.Show();           this.Close();       }¥b $ b   }         解决方案 What I am wondering is if I can write code for the second window2.xaml that I have added from the "first" MainWindow.xaml.cs.Usally when you add a new window you wound have to write code in the new window2.xaml.csBut I want to code everything from the MainWindow.xaml.xs. I want to create a new button on the window2.xaml and code it on MainWindow.xaml.csWould the answer be to create user control? If so how do you do it?ex: public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void SecondWin2_Click(object sender, RoutedEventArgs e) { SecondWindow win2 = new SecondWindow(); win2.Show(); this.Close(); } } 解决方案 这篇关于c#WPF使用MainWindow.xaml.cs中的第二个window2.xaml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-15 04:15