是否可以在WF应用程序中将MainWindow.Xaml设置为启动应用程序(即在Program.cs中)?因为在我的项目中,我需要使用Application.Current属性获取当前应用程序。
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
//ElementHost ctrlHost = new ElementHost();
var window = new TestVisualBase.WPF.MainWindow();
//ctrlHost.Child = window;
window.Show();
System.Windows.Forms.Application.Run();
}
}
请告诉我,是否可以从WF应用程序获取当前应用程序作为MainWindow?
感谢阅读,