如何将控制台应用程序窗口设置为最顶层的窗口(C#)?

时间:2010-07-30 08:56:53

标签: c# window console-application

如何将控制台应用程序设置为最顶层的窗口。我正在使用.NET构建控制台应用程序(我正在使用C#,甚至可以将pinvokes转换为非托管代码)。

我认为我的控制台应用程序可以从Form类

派生
class MyConsoleApp : Form {
    public MyConsoleApp() {
        this.TopLevel = true;
        this.TopMost = true;
        this.CenterToScreen();
    }

    public void DoSomething() {
        //....
    }

    public static void Main() {
        MyConsoleApp consoleApp = new MyConsoleApp();
        consoleApp.DoSomething();
    }
}

然而,这不起作用。我不确定Windows窗体上设置的属性是否适用于控制台UI。

2 个答案:

答案 0 :(得分:11)

您可以从Windows API P / Invoke SetWindowPos

using System;
using System.Diagnostics;
using System.Runtime.InteropServices;

class Program
{
    [DllImport("user32.dll", SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool SetWindowPos(
        IntPtr hWnd, 
        IntPtr hWndInsertAfter, 
        int x, 
        int y, 
        int cx, 
        int cy, 
        int uFlags);

    private const int HWND_TOPMOST = -1;
    private const int SWP_NOMOVE = 0x0002;
    private const int SWP_NOSIZE = 0x0001;

    static void Main(string[] args)
    {
        IntPtr hWnd = Process.GetCurrentProcess().MainWindowHandle;

        SetWindowPos(hWnd, 
            new IntPtr(HWND_TOPMOST), 
            0, 0, 0, 0, 
            SWP_NOMOVE | SWP_NOSIZE);

        Console.ReadKey();
    }
}

答案 1 :(得分:0)

您可以将FindWindow与P / Invoke(http://msdn.microsoft.com/en-us/library/ms633499(VS.85).aspx)一起使用,然后以某种方式设置扩展样式以使用WS_EX_TOPMOST - 请参阅P / Invoke中的SetWindowLong({{3 }})。

然而,它有点hacky并建议使用Windows窗体或WPF创建自己的控制台窗口。