我想制作一个应用程序,我可以在其中单击一个按钮并出现一个新窗口,其中有新的选项/按钮可用。单击按钮后,我已经设法创建了一个新窗口 win2:
private void button1_Click(object sender, RoutedEventArgs e)
{
var win2 = new Window();
win2.Show();
this.Close();
}
现在我如何编辑新窗口。假设我想制作新按钮(命名为:蓝色、绿色……),用户可以在其中选择背景颜色。