无边框控制台应用程序

时间:2012-10-03 08:57:54

标签: c# cmd console-application

我想知道如何获得无边界的C#.NET控制台应用程序。我的应用程序工作正常,但我不希望我的应用程序看起来像一个普通的表单,最小化,最大化和关闭按钮和左上角的图标和文本。

所以,我想知道如何实现这一目标。

4 个答案:

答案 0 :(得分:7)

你不能,它甚至没有意义。由其输入和输出流表示的控制台是系统支持的资源,根本不需要由控制台窗口表示。例如,您的应用程序的输入和输出可以重定向。

答案 1 :(得分:5)

据我所知,您需要使用Win32来更改控制台窗口的外观。这意味着DllImport和很多复杂性在你的替代方案中是非常不必要的:

如果将应用程序重新创建为WinForms应用程序,则可以在主窗口中设置这些属性。然后在中间删除一个文本框,使其停靠在窗口中,然后您正在模拟控制台。

答案 2 :(得分:4)

假设您(出于某种原因)无法使用无边框WinForm,并且您绝对必须使用控制台窗口。好吧,你可以有点让它发挥作用。

使用this similar problem over here中的大部分代码,我们可以整合一个可行的解决方案。

以下是无边界控制台窗口的示例:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;

namespace ConsoleBorderTest
{
    class Program
    {
        [DllImport("USER32.DLL")]
        public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

        [DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
        static extern IntPtr FindWindowByCaption(IntPtr ZeroOnly, string lpWindowName);

        [DllImport("user32.dll")]
        static extern bool DrawMenuBar(IntPtr hWnd);

        [DllImport("user32.dll", EntryPoint = "SetWindowPos")]
        public static extern IntPtr SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int Y, int cx, int cy, int wFlags);

        [DllImport("user32.dll", SetLastError = true)]
        static extern bool GetWindowRect(IntPtr hwnd, out RECT lpRect);

        [DllImport("user32", ExactSpelling = true, SetLastError = true)]
        internal static extern int MapWindowPoints(IntPtr hWndFrom, IntPtr hWndTo, [In, Out] ref RECT rect, [MarshalAs(UnmanagedType.U4)] int cPoints);

        [DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
        public static extern IntPtr GetDesktopWindow();

        [StructLayout(LayoutKind.Sequential)]
        public struct RECT
        {
            public int left, top, bottom, right;
        }

        private static readonly string WINDOW_NAME = "TestTitle";  //name of the window
        private const int GWL_STYLE = -16;              //hex constant for style changing
        private const int WS_BORDER = 0x00800000;       //window with border
        private const int WS_CAPTION = 0x00C00000;      //window with a title bar
        private const int WS_SYSMENU = 0x00080000;      //window with no borders etc.
        private const int WS_MINIMIZEBOX = 0x00020000;  //window with minimizebox

        static void makeBorderless()
        {
            // Get the handle of self
            IntPtr window = FindWindowByCaption(IntPtr.Zero, WINDOW_NAME);
            RECT rect;
            // Get the rectangle of self (Size)
            GetWindowRect(window, out rect);
            // Get the handle of the desktop
            IntPtr HWND_DESKTOP = GetDesktopWindow();
            // Attempt to get the location of self compared to desktop
            MapWindowPoints(HWND_DESKTOP, window, ref rect, 2);
            // update self
            SetWindowLong(window, GWL_STYLE, WS_SYSMENU);
            // rect.left rect.top should work but they're returning negative values for me. I probably messed up
            SetWindowPos(window, -2, 100, 75, rect.bottom, rect.right, 0x0040);
            DrawMenuBar(window);
        }

        static void Main(string[] args)
        {
            Console.Title = WINDOW_NAME;
            makeBorderless();
            Console.WriteLine("Can you see this?");
            Console.ReadLine();
        }
    }
}

这几乎是来自引用链接herehere的直接副本。我试着获取表单的位置,但我无法做到。我确实设法得到了大小,但位置为我返回负值。

虽然它不是很好,但它是一个无边框的控制台窗口。我真的建议将文本框对接到普通表单。这是一张图片:"You need 10 reputation to post images"...

答案 3 :(得分:0)

我会设计一个具有所需外观(无边框)的Windows窗体应用程序,甚至是带控制台外观的黑色,然后使其可移动

URL: Make a borderless form movable?