怎样屏蔽掉窗体上右上角上的关闭按扭(X)(50分)

  • 主题发起人 主题发起人 蕊蕊
  • 开始时间 开始时间

蕊蕊

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样屏蔽掉窗体上右上角上的关闭按扭(X)
 
procedure TForm1.FormActivate(Sender: TObject);<br>begin<br>EnableMenuItem(GetSystemMenu(Handle, FALSE), SC_CLOSE, MF_BYCOMMAND or MF_GRAYED);<br>end;<br>
 
procedure TForm1.FormActivate(Sender: TObject);<br>begin<br>EnableMenuItem(GetSystemMenu(Handle, FALSE), SC_CLOSE, MF_BYCOMMAND or MF_GRAYED);<br>end;<br><br>对这个方法不错,很直接也很好用
 
直接设置BorderIcons属性就可以了:biSystemMenu:设置关闭按扭<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;biMiniMize:最小化按扭<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;biMaximize:最大化按扭<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;biHelp:帮助按扭
 
接受答案,谢谢你们
 

Similar threads

S
回复
0
查看
695
SUNSTONE的Delphi笔记
S
S
回复
0
查看
783
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部