實現(xiàn)方法如下:
創(chuàng)新互聯(lián)公司專注于偃師網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供偃師營銷型網(wǎng)站建設(shè),偃師網(wǎng)站制作、偃師網(wǎng)頁設(shè)計、偃師網(wǎng)站官網(wǎng)定制、微信小程序服務(wù),打造偃師網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供偃師網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
1.引用命名空間
using System.Runtime.InteropServices;
2.聲明如下變量:
public class Form1 : System.Windows.Forms.Form
{
//.....
[DllImport("user32.dll",EntryPoint="GetSystemMenu")]
extern static IntPtr GetSystemMenu(IntPtr hWnd, IntPtr bRevert);
[DllImport("user32.dll",EntryPoint="RemoveMenu")]
extern static int RemoveMenu(IntPtr hMenu, int nPos, int flags);
//.....
}
3.在Form的構(gòu)造函數(shù)里加入代碼
public Form1()
{
const int MF_BYPOSITION = 0x0400;
const int MF_REMOVE = 0x1000;
FormBorderStyle = FormBorderStyle.FixedSingle;
MaximizeBox = false;
MinimizeBox = false;
RemoveMenu(GetSystemMenu(Handle,IntPtr.Zero),1,MF_BYPOSITION |MF_REMOVE);
}
就OK啦
vb.net鎖定除頂級窗體以外的操作步驟如下:
1、通過Show方法,用以顯示MDIForm或Form對象。
2、當Show在顯示無模式窗體時,隨后遇到的代碼則要執(zhí)行。
3、當Show在顯示模式窗體時,則隨后的代碼直到該窗體被隱藏或卸載時執(zhí)行即可。
VisualStudio 2010中的vb.net
鎖定邊框:
代碼輸入Me.FormBorderStyle = Windows.Forms.FormBorderStyle.Fixed3D
或者在屬性列表里設(shè)置FormBorderStyle 為Fixed3D
最大化不可用:
代碼輸入Me.MaximizeBox = False
或者在屬性列表里設(shè)置MaximizeBox 為 False