无间道III (July 2005 C# Microsoft MVP) 的博客

《涅槃经》第十九卷:八大地狱之最,称为无间地狱,为无间断遭受大苦之意,故有此名。《地藏菩萨本愿经卷上》:如是等辈,当堕无间地狱,千万亿劫,以此连绵,求出无期......

博客园 首页 联系 订阅 管理

using System.Runtime.InteropServices;

[DllImport("User32.dll")]
public static extern int GetSystemMenu(int hWnd, int bRevert);

[DllImport("User32.dll")]
public static extern int RemoveMenu(int hMenu, int nPosition, int wFlags);

private void yourform_Load(object sender, System.EventArgs e)
{
    int lSysMenu;
    const int  MF_BYPOSITION = 1024;
    lSysMenu = GetSystemMenu(this.Handle.ToInt32(), 0);
    RemoveMenu(lSysMenu, 6, MF_BYPOSITION);
}

posted on 2004-05-17 00:04  无间道  阅读(1762)  评论(1编辑  收藏  举报