回答:
新しいWPFアプリケーションを作成したら、.xamlファイルと.csファイルが必要です。これらはメインウィンドウを表します。サブウィンドウを表す追加の.xamlファイルと.csファイルを作成します。
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Button Content="Open Window" Click="ButtonClicked" Height="25" HorizontalAlignment="Left" Margin="379,264,0,0" Name="button1" VerticalAlignment="Top" Width="100" />
</Grid>
</Window>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void ButtonClicked(object sender, RoutedEventArgs e)
{
SubWindow subWindow = new SubWindow();
subWindow.Show();
}
}
次に、これらのクラスに必要なコードを追加します。
SubWindow.xaml
SubWindow.xaml.cs
2番目のウィンドウがとして定義されているとすると、次のようpublic partial class Window2 : Window
に実行できます。
Window2 win2 = new Window2();
win2.Show();
これは私に役立ちました。Ownerメソッドは基本的に、同じウィンドウを持つ追加のウィンドウが必要な場合に備えて、ウィンドウを別のウィンドウに関連付けます。
LoadingScreen lc = new LoadingScreen();
lc.Owner = this;
lc.Show();
これも考慮してください。
this.WindowState = WindowState.Normal;
this.Activate();
WPFでは、Show()メソッドとShowDialog()メソッドを使用して、いくつかのオプションがあります。
新しいウィンドウが開いたときに開いているウィンドウを閉じたい場合は、Show()メソッドを使用できます。
Window1 win1 = new Window1();
win1.Show();
win1.Close();
ShowDialog()もウィンドウを開きますが、この場合、以前に開いたウィンドウを閉じることはできません。