2

我有一个控制台应用程序。所以我需要打开一个名为“UserInterface.xaml”的窗口,这是一个窗口。

我的班级计划我有这个:

class Program
{
        [STAThread]
        static void Main(string[] args)
        {        
            var userInterface = new UserInterface();
            userInterface .Show();
}

问题是当 UserInterface.xaml 打开但立即关闭时。我需要它来捕获用户的一些数据。

这是我的类用户界面:

public partial class UserInterface: Window
    {       

        public UserInterface()
        {                
            InitializeComponent();
        }

........
}

如何使 UserInterface 窗口保持打开状态?

4

2 回答 2

1

Just use the ShowDialog() method instead.

    UserInterface userInterface  = new UserInterface();
    userInterface.ShowDialog();

It will block until the form is manually or programmatically closed.

于 2011-05-20T15:03:06.450 回答
1

Try to refine your Main() as below:

[STAThread]
static void Main(string[] args)
{
    var userInterface  = new UserInterface();

    System.Windows.Application app = new System.Windows.Application();
    app.Run(userInterface);
}
于 2011-05-20T15:04:58.587 回答