运行控制台的WinForm应用程序 - 在控制台问题上禁用最小化/最大化/关闭按钮

时间:2011-11-10 18:41:09

标签: c# winforms winforms-interop

我正在编写一个可以启动控制台进行调试的Windows窗体应用程序。我想禁用控制台的关闭按钮,以便无法通过控制台的关闭按钮关闭Windows窗体应用程序。我已经构建了测试代码框架并且它可以工作。代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

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

namespace bsa_working
{
    public partial class Form1 : Form
    {
        static bool console_on = false;

        public Form1()
        {
            InitializeComponent();
        }

        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            if (ViewConsole.Checked)
            {
                Win32.AllocConsole();
                ConsoleProperties.ConsoleMain();

                // Set console flag to true
                console_on = true;  // will be used later
            }
            else
                Win32.FreeConsole();
        }
    }

    public class Win32
    {
        [DllImport("kernel32.dll")]
        public static extern Boolean AllocConsole();
        [DllImport("kernel32.dll")]
        public static extern Boolean FreeConsole();
    }

    public class ConsoleProperties
    {
        [DllImport("user32.dll")]
        static extern bool EnableMenuItem(IntPtr hMenu, uint uIDEnableItem, uint uEnable);

        [DllImport("user32.dll")]
        static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);

        [DllImport("user32.dll")]
        static extern IntPtr RemoveMenu(IntPtr hMenu, uint nPosition, uint wFlags);

        internal const uint SC_CLOSE = 0xF060;
        internal const uint MF_GRAYED = 0x00000001;
        internal const uint MF_BYCOMMAND = 0x00000000;

        public static void ConsoleMain()
        {
            IntPtr hMenu = Process.GetCurrentProcess().MainWindowHandle;
            IntPtr hSystemMenu = GetSystemMenu(hMenu, false);

            EnableMenuItem(hSystemMenu, SC_CLOSE, MF_GRAYED);
            RemoveMenu(hSystemMenu, SC_CLOSE, MF_BYCOMMAND);

            // Set console title
            Console.Title = "Test Console";

            // Set console surface foreground and background color
            Console.BackgroundColor = ConsoleColor.DarkBlue;
            Console.ForegroundColor = ConsoleColor.White;
            Console.Clear();
        }
    }
}

代码工作正常除外:

  1. 第一次编译并运行代码时,控制台上的X不会显示为灰色,但在Windows窗体应用程序中显示为灰色。但是,当代码关闭并再次运行时,代码可以正常工作;也就是说,控制台上的X显示为灰色,Windows窗体应用程序应该是应该的。任何想法为什么以及如何解决这个问题?

  2. 有时控制台出现在胜利表格后面。有什么方法可以强制控制台始终排在首位?

  3. 顺便说一句,是否可以将控制台固定到WinForm上的特定位置?应用程序吗?我可以设置它的大小,如果我可以将它固定在特定的位置,我可以在表单上为它创建一个位置。

1 个答案:

答案 0 :(得分:1)

要完成这项工作,您需要更改IntPtr hMenu = Process.GetCurrentProcess().MainWindowHandle;以使用控制台窗口的窗口句柄(您可以通过调用GetConsoleWindow()获得)。

要将其显示在顶部,您可以使用例如SetForegroundWindow with the Console Window Handle

关于固定我真的不确定这是否可能。