마우스커서가 폼(Form)안에 있는지 여부
//API함수 이용 (핸들을 잡아 마우스가 사각형안에 있는지 체크)
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TForm1 = class(TForm)
procedure FormDeactivate(Sender: TObject);
procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.FormDeactivate(Sender: TObject);
begin
ReleaseCapture;
end;
procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
begin
If GetCapture = 0 then SetCapture(Form1.Handle);
if PtInRect(Rect(Form1.Left, Form1.Top,Form1.Left + Form1.Width, Form1.Top + Form1.Height),
ClientToScreen(Point(x, y))) then
Form1.Caption := 'Mouse is over form' else Form1.Caption := 'Mouse is outside of form';
end;
end.
'Delphi Tip > +Tip' 카테고리의 다른 글
폼 Border 없이 사이즈 변경 (0) | 2024.02.01 |
---|---|
디버깅용 콘솔창 띄우기 (0) | 2024.01.12 |
프로그램에서 DOS 명령어 처리 (0) | 2023.12.29 |
델파이 디버깅용 콘솔창 만들기 (0) | 2023.12.11 |
델파이 메세지다이어로그(MessageDialog) 원하는 키 받기 (0) | 2023.11.30 |
댓글