启动WPF窗口

时间:2009-07-23 10:36:45

标签: wpf .net-3.5 window

我将.Net 2.0项目升级为3.5。

在当前项目中 代码“System.Windows.Forms.Application.Run(winForm);”创建初始窗体

我想知道无论如何能告诉我什么等同于调用WPF窗口。

任何真正有用的帮助或建议。 史蒂夫

2 个答案:

答案 0 :(得分:2)

如果您使用的是C#,请尝试:

new Application().Run(new Window());

答案 1 :(得分:1)

为什么不只是创建一个空的新WPF项目并查看代码?

<Application x:Class="CRS_GUI.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    StartupUri="MainWin.xaml">
    <Application.Resources>

    </Application.Resources>
</Application>

这是我当前项目的开始,看看StartupUri。