1

我正在编写一个可以启动控制台进行调试的 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. 有时控制台会出现在获胜表格的后面。有什么方法可以强制控制台始终排在首位?

顺便说一句,有什么方法可以将控制台固定到 WinForm 上的特定位置?应用程序?我可以设置它的大小,所以如果我可以将它固定在一个特定的位置,我可以在表格上为它创建一个位置。

4

1 回答 1

1

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

要使其显示在顶部,您可以使用例如SetForegroundWindowConsole Window Handle

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

于 2011-11-10T19:26:58.707 回答