Application.Current控制台应用程序中的“null”

时间:2011-09-12 18:12:01

标签: c# .net wpf multithreading f#

我目前正在尝试使用WPF组件,该组件使用来自WPF应用程序的Application.Current,但由于几个原因我从不调用Application.Run(也不是一个选项)。结果是NullReferenceException。

我基本上试图从控制台应用程序中显示同一个WPF窗口的多个实例。 欢迎任何建议(以及C#/ F#中的代码示例)!

提前致谢

2 个答案:

答案 0 :(得分:15)

提供替代解决方案。 可以在不打开任何窗口的情况下保持应用程序运行。对我来说,这感觉不那么'黑客'。 :) http://msdn.microsoft.com/en-us/library/system.windows.application.shutdownmode.aspx

public class AppCode : Application
{
   // Entry point method
   [STAThread]
   public static void Main()
   {
      AppCode app = new AppCode();
      app.ShutdownMode = ShutdownMode.OnExplicitShutdown;
      app.Run();
      ...
      app.Shutdown();
   }
}

编辑: 好吧,这有点麻烦。 Application.Run将阻塞,因此它需要在自己的线程中运行。 当它在自己的线程中运行时,主线程和ui线程之间的任何交互最好由Application.Current.Dispatcher.Invoke完成。这是一些工作代码,假设您有一个继承自Application的类。我正在使用WPF项目模板为您创建的修改后的App.xaml / App.xaml.cs,以免费处理ResourceDictionaries。

public class Program
{
  // Entry point method
  [STAThread]
  public static void Main()
  {
     var thread = new System.Threading.Thread(CreateApp);
     thread.SetApartmentState(System.Threading.ApartmentState.STA);
     thread.Start();

     // This is kinda shoddy, but the thread needs some time 
     // before we can invoke anything on the dispatcher
     System.Threading.Thread.Sleep(100);

     // In order to get input from the user, display a
     // dialog and return the result on the dispatcher
     var result = (int)Application.Current.Dispatcher.Invoke(new Func<int>(() =>
        {
           var win = new MainWindow();
           win.ShowDialog();
           return 10;
        }), null);

     // Show something to the user without waiting for a result
     Application.Current.Dispatcher.Invoke(new Action(() =>
     {
        var win = new MainWindow();
        win.ShowDialog();
     }), null);

     System.Console.WriteLine("result" + result);
     System.Console.ReadLine();

     // This doesn't really seem necessary 
     Application.Current.Dispatcher.InvokeShutdown();
  }

  private static void CreateApp()
  {
     App app = new App();
     app.ShutdownMode = ShutdownMode.OnExplicitShutdown;
     app.Run();
  }
}

答案 1 :(得分:6)

以下是Application类的预期行为:

  • 第一个打开的窗口是MainWindow。
  • 列表中唯一的窗口成为MainWindow(如果有其他窗口) 被删除)。
  • 应用程序类旨在在没有窗口时退出 windows list。

选中link

所以基本上你不能运行一个应用程序,没有任何窗口打开。保持窗户打开但隐藏。


如果我误解了你的问题,那么以下类似的案例可能会有所帮助: