从 Programm 类开始打开一个窗口?

发布于 2024-11-08 12:48:18 字数 612 浏览 0 评论 0原文

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

我的班级程序我有这个:

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

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

这是我的类 UserInterface:

public partial class UserInterface: Window
    {       

        public UserInterface()
        {                
            InitializeComponent();
        }

........
}

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

I have a console application. So I need Open a Window called "UserInterface.xaml" this is a Window.

I my class Program I have this:

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

The problem is when the UserInterface.xaml is opened but then is closed immediately. And I need it for capture some data from user.

this is my class UserInterface:

public partial class UserInterface: Window
    {       

        public UserInterface()
        {                
            InitializeComponent();
        }

........
}

How can I make the UserInterface window stay opened?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

上课铃就是安魂曲 2024-11-15 12:48:18

只需使用 ShowDialog() 方法即可。

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

它将阻塞,直到手动或以编程方式关闭表单。

Just use the ShowDialog() method instead.

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

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

北城半夏 2024-11-15 12:48:18

尝试如下改进您的 Main() :

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

    System.Windows.Application app = new System.Windows.Application();
    app.Run(userInterface);
}

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);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文