如何在当前窗口中打开(打开)
本文关键字:打开 窗口 | 更新日期: 2023-09-27 17:56:47
我认为我的问题很简单,但我无法处理它。
如果我有窗口和一个按钮,并且我想在该窗口上打开其他窗口控件,我该怎么做?我尝试通过VSM执行此操作,但是我卡住了,仍然不知道该怎么做。也许有一种更简单的方法?
是的。谢谢大家的回答,但我想我没有明确说明我想得到什么。
方法:Show() 和 ShowDialog() 打开新窗口,我想在当前窗口中打开控件。我想到这样的事情:
newWindowControl nwc = new newWindowControl();
LayoutRoot.Children.Add(nwc);
但在 VSM 中。
我不知道是否有可能这样做。
如果你想在现有窗口之上打开另一个窗口,就像弹出窗口一样。您可以简单地初始化一个新窗口并调用其 show 方法。
//Second window is of type Window
SecondWindow window = new SecondWindow();
window.Show();
private void button1_Click(object sender, EventArgs e)
{
using (Form2 form2 = new Form2())
{
form2.ShowDialog();
}
}