黑马程序员技术交流社区

标题: winform无边窗体在任务栏上显示系统菜单 [打印本页]

作者: 丁艳姣    时间: 2012-10-25 13:37
标题: winform无边窗体在任务栏上显示系统菜单
当把winform的formborderstyle属性设置为none时,即为无边框窗体,那么任务栏上的图标的左键和右键功能就没有反应了,请问该怎样解决啊?
作者: 许庭洲    时间: 2012-10-26 21:40
1、在Class里面加入

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

namespace WindowsFormsApplication1
...{
    class Class1
    ...{
        System.Windows.Forms.Form FormA;

        public void Skin(System.Windows.Forms.Form frm)
        ...{
            FormA = frm;

            frm.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            frm.BackColor = System.Drawing.SystemColors.Desktop;
            frm.TransparencyKey = System.Drawing.SystemColors.Desktop;

            NoneBorder();
        }

        // http://blog.csdn.net/hbxtlhx/archive/2007/08/01/1721061.aspx
        [DllImport("user32.dll", EntryPoint = "GetWindowLong", CharSet = CharSet.Auto)]
        public static extern int GetWindowLong(HandleRef hWnd, int nIndex);

        [DllImport("user32.dll", EntryPoint = "SetWindowLong", CharSet = CharSet.Auto)]
        public static extern IntPtr SetWindowLong(HandleRef hWnd, int nIndex, int dwNewLong);
      
        void NoneBorder()
        ...{
            int WS_SYSMENU = 0x00080000; // 系统菜单
            int WS_MINIMIZEBOX = 0x20000; // 最大最小化按钮

            int windowLong = (GetWindowLong(new HandleRef(FormA, FormA.Handle), -16));
            SetWindowLong(new HandleRef(FormA, FormA.Handle), -16, windowLong | WS_SYSMENU | WS_MINIMIZEBOX);
        }
    }
}

2、在Form中调用

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;

namespace WindowsFormsApplication1
...{
    public partial class Form1 : Form
    ...{
        Class1 SkinClass = new Class1();

        public Form1()
        ...{
            InitializeComponent();

            SkinClass.Skin(this);
        }
    }
}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2