Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は WPF を使用して C# プロジェクトに取り組んでいます。C# フォームから FPF フォームを呼び出そうとしていますが、WPF フォームを開いていません。次のコードを使用して WPF form を呼び出しています。
private void button1_Click(object sender, RoutedEventArgs e) { newForm = new MainWindow(); newForm.Show(); }