打开项目的App.xaml.cs并覆盖App类的OnStartup方法。所以你的App类应该是这样的:
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
System.Windows.Forms.Application.EnableVisualStyles();
}
}
这应该使您的表单在您的 WPF 应用程序中看起来更好。