2

我尝试在我的 c# 测试应用程序中打开一个 wpf 窗口。但是当我打开窗户时,它又立即关闭了。

我的代码有什么问题?

Main.cs(也可在此处获得):

namespace Project1
{
    class TestClass
    {
        public static MainWindow _mainWindow = null;

        static void Main(string[] args)
        {
            Thread t = new Thread(new ThreadStart(ThreadProc));
            t.SetApartmentState(ApartmentState.STA);
            t.Start();

            while (true)
            {
                System.Threading.Thread.Sleep(1000);
                _mainWindow.ToString();
            }
        }

        public static void ThreadProc()
        {
            TestClass2 testClass = new TestClass2();
            testClass.Open();
        }
    }

    class TestClass2
    {
        public void Open()
        {
            TestClass._mainWindow = new MainWindow();
            TestClass._mainWindow.Show();
            Console.WriteLine("=)");
        }
    }
}

MainWindow.xaml:

http://paste.ubuntu.com/943800/

4

3 回答 3

7

您的代码正在做一些没有明显原因的奇怪事情:

  • 为什么要创建一个新线程,然后将已有的线程放入无限循环中?
  • 为什么要调用.ToString()your Window,它还属于另一个线程?(我不确定这是否会像大多数其他操作一样导致您的程序由于所有权问题而崩溃,但这是可能的)。

此外,您不会在任何地方创建消息循环,因此即使程序正常运行,它也会完全不响应用户输入。创建您的 后Window,在您执行的任何线程中,您都应该调用

System.Windows.Threading.Dispatcher.Run();
于 2012-04-24T09:28:07.257 回答
2

我相信您缺少 [STAThread] 属性Main()

于 2012-04-24T09:36:26.847 回答
0

您是否尝试使用ShowDialog()而不是Show()

于 2012-04-24T09:26:14.883 回答