摘要:
1、procedure TForm1.WMInit(var msg: TWMInitMenuPOPUP);begin inherited; EnableMenuItem(msg.MenuPopup ,sc_Close,MF_BYCOMMAND or MF_GRAY... 阅读全文
摘要:
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, ... 阅读全文
摘要:
procedure TForm1.CreateParams(var Params: TCreateParams) ;begin BorderStyle := bsNone; inherited; Params.ExStyle := Params.ExStyle ... 阅读全文
摘要:
type TForm1 = class(TForm)... private procedure GetMinMaxInfo(var Msg: TWMGETMINMAXINFO) ; message WM_GETMINMAXINFO;...impleme... 阅读全文
摘要:
type TCustomCaptionForm = class(TForm) private procedure WMNCPaint(var Msg: TWMNCPaint) ; message WM_NCPAINT; procedure WM... 阅读全文
摘要:
先设置BorderStyle和BorderIconstype THelpForm = class(TForm) private procedure WMNCLBUTTONDOWN(var Msg: TWMNCLButtonDown) ; message... 阅读全文