c#-不带控制框的Windows窗体对话框图标

我想知道是否有一种方法可以在禁用控制框,最小化框和最大化框的同时在自定义对话框的左上角显示图标?单击图标(大约,关闭,移动等)时,我不需要任何功能.我只想要更好的外观.解决方法:没有控制箱=没有图标…禁用Cont...

我想知道是否有一种方法可以在禁用控制框,最小化框和最大化框的同时在自定义对话框的左上角显示图标?单击图标(大约,关闭,移动等)时,我不需要任何功能.我只想要更好的外观.

解决方法:

没有控制箱=>没有图标…

禁用ControlBox后,窗体windowstyle WS_SYSMENU标志(以某种方式以一种遥远的方式)将被删除,因此Windows无法显示图标.实际上,我尚未找到关于为什么右上角图标继续存在而又没有WS_SYSMENU的最终解释……但是找到了另一个更适合您需求的解决方案)

    private const int GWL_STYLE = -16;
    private const int WS_CLIPSIBLINGS = 1 << 26;

    [DllImport("user32.dll", CharSet = CharSet.Auto, EntryPoint = "SetWindowLong")]
    public static extern IntPtr SetWindowLongPtr32(HandleRef hWnd, int nIndex, HandleRef dwNewLong);
    [DllImport("user32.dll", CharSet = CharSet.Auto, EntryPoint = "GetWindowLong")]
    public static extern IntPtr GetWindowLong32(HandleRef hWnd, int nIndex);

    protected override void onl oad(EventArgs e) {
        int style = (int)((long)GetWindowLong32(new HandleRef(this, this.Handle), GWL_STYLE));
        SetWindowLongPtr32(new HandleRef(this, this.Handle), GWL_STYLE, new HandleRef(null, (IntPtr)(style & ~WS_CLIPSIBLINGS)));

        base.OnLoad(e);
    }

本文标题为:c#-不带控制框的Windows窗体对话框图标

基础教程推荐