从隐藏的控制台应用程序显示表

时间:2014-03-24 09:56:00

标签: c# winforms

我有一个运行控制台应用程序的主应用程序。控制台应用程序通常是隐藏的(ProcessWindowStyle.Hidden),但出于测试目的,我可以使用显示的窗口运行它。

在控制台应用程序中,我可以加载并执行插件。其中一个插件尝试打开W​​inForm对话框。如果控制台应用程序可见,它可以正常工作,但如果控制台被隐藏则不再起作用。

我试过了:

Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form());

我也尝试了一个新线程。

Thread t = new System.Threading.Thread(start);
t.Start();
t.Join();

其中start()包含以前的内容。此外,我尝试了ShowDialog()

Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var f = new Form();
f.ShowDialog();

没有一种方法显示窗口。

在WinDbg中,本机callstack始终包含NtUserWaitMessage()

0:000> k
ChildEBP RetAddr  
0038dd58 7b0d8e08 USER32!NtUserWaitMessage+0x15

托管调用堆栈始终包含WaitMessage()FPushMessageLoop()RunMessageLoop()

0:000> !clrstack
OS Thread Id: 0x47c4 (0)
ESP       EIP     
0045e560 76bff5be [InlinedCallFrame: 0045e560] System.Windows.Forms.UnsafeNativeMethods.WaitMessage()
0045e55c 7b0d8e08 System.Windows.Forms.Application+ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32, Int32, Int32)
0045e5f8 7b0d88f7 System.Windows.Forms.Application+ThreadContext.RunMessageLoopInner(Int32, System.Windows.Forms.ApplicationContext)
0045e64c 7b0d8741 System.Windows.Forms.Application+ThreadContext.RunMessageLoop(Int32, System.Windows.Forms.ApplicationContext)
0045e67c 7b5ee597 System.Windows.Forms.Application.RunDialog(System.Windows.Forms.Form)
0045e690 7b622d98 System.Windows.Forms.Form.ShowDialog(System.Windows.Forms.IWin32Window)
0045e71c 7b622faf System.Windows.Forms.Form.ShowDialog()

如何从隐藏的控制台窗口显示WinForms表单?

SSCCE:

将其编译为Windows窗体应用程序:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        var startInfo = new ProcessStartInfo("Console.exe");
        startInfo.WindowStyle = ProcessWindowStyle.Hidden;
        Process.Start(startInfo);
    }
}

将其编译为控制台应用程序:

class Program
{
    static void Main(string[] args)
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        var mainForm = new Form();
        // Enable next line to make it show
        // mainForm.Visible = true;
        Application.Run(mainForm);
    }
}

1 个答案:

答案 0 :(得分:2)

使用Winspector Spy我发现窗口实际可用,但它没有WS_VISIBLE样式。将该样式应用于表单使其可见,并显示在Windows任务栏中。

解决方案是在显示之前使表格可见,因此以下工作:

Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var f = new Form()
f.Visible = true;
Application.Run(f);

因为在我的情况下我想获得返回值,所以我应该调用ShowDialog()。但是,不允许在已经可见的表单上调用ShowDialog(),因此我坚持Application.Run(f)并自行检索结果:

var answer = configForm.DialogResult;