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 表单。
private void button1_Click(object sender, RoutedEventArgs e) { newForm = new MainWindow(); newForm.Show(); }