// 例:当用户在Form客户区的(100,100)-(200,200)范围点击鼠标时,显示"Hello, World";
// 除了Form1以外,并没有使用别的控件,当然你也可以连TForm都不要:)
procedure TForm1.FormMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if (X>=100) and (X<=200) and (Y>=100) and (Y<=200) then
Showmessage('Hello, World!');
end;