- 关 键 词:
- windows
最简单的办法就是"欺骗"系统,让他认为点中的是窗体的标题行
unit Dragmain;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
procedure WMNCHitTest(var M: TWMNCHitTest); message wm_NCHitTest;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.WMNCHitTest(var M: TWMNCHitTest);
begin
inherited; { call the inherited message handler }
if M.Result = htClient then { is the click in the client area? }
M.Result := htCaption; { if so, make Windows think its }
{ on the caption bar. }
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Close;
end;
end.
{ 下面是这个窗体的设置}
object Form1: TForm1
Left = 203
Top = 94
BorderIcons = []
BorderStyle = bsNone
ClientHeight = 273
ClientWidth = 427
Font.Color = clWindowText
Font.Height = -13
Font.Name = System
Font.Style = []
PixelsPerInch = 96
TextHeight = 16
object Button1: TButton
Left = 160
Top = 104
Width = 89
Height = 33
Caption = Close
TabOrder = 0
OnClick = Button1Click
end
end
相关专题
- 电信运营商专栏 (4039篇文章)
- 这个冬天不怕冷 保暖专用USB设备大搜捕 (0次浏览)
- 手感便携兼顾 可充气可折叠便携鼠标(图) (0次浏览)
- 为汽水加热和制冷 超新奇USB温罐器图赏 (0次浏览)
- 触摸滚轮 Belkin可水洗鼠标实物图赏 (0次浏览)
- 罗技疾风飞盾手柄亮相 抑制手掌出汗 (0次浏览)
- 胆小者勿看 骷髅键盘鼠标惊悚外观(图) (0次浏览)
- 惠普发布2008年笔记本电脑配件解决方案 (0次浏览)
- 舒适在手体贴在心 明基发布八款键鼠新品 (0次浏览)
- 首款多样发光键盘亮相CES2008(图) (0次浏览)
- 奢华再现 罗技diNovo迷你键盘亮相CES (0次浏览)



