P
Puff
Unregistered / Unconfirmed
GUEST, unregistred user!
我在一期CFAN上看到一篇关于不规则窗口的文章,为了在不显示标题时仍能拖动窗口,
作者写了这样的程序:
procedure TForm1.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if button=mbleft then
begin
releasecapture;
twincontrol(parent).perform(wm_syscommand,$f012,0);
end;
end;
可是我试了却没效果,哪为大侠解释一下!
作者写了这样的程序:
procedure TForm1.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if button=mbleft then
begin
releasecapture;
twincontrol(parent).perform(wm_syscommand,$f012,0);
end;
end;
可是我试了却没效果,哪为大侠解释一下!