Registriert seit: 17. Sep 2006
Ort: Barchfeld
27.619 Beiträge
Delphi 12 Athens
|
AW: Cursor auf Komponente legen
13. Mai 2014, 08:44
Etwas vereinfacht ohne Form-Parameter:
Delphi-Quellcode:
procedure SetControlCursorPos(const Control : TControl; const CursorPos : TCursorPos);
var
P: TPoint;
begin
Assert(Assigned(Control), 'Kein Control zur Ausrichtung übergeben');
case CursorPos of
cpTopLeft:
P := Control.ClientToScreen(Point(0, 0));
cpTopRight:
P := Control.ClientToScreen(Point(Control.Width, 0));
cpBottomLeft:
P := Control.ClientToScreen(Point(0, Control.Height));
cpBottomRight:
P := Control.ClientToScreen(Point(Control.Width, Control.Height));
cpCentered:
P := Control.ClientToScreen(Point(Control.Width div 2, Control.Height div 2));
end;
SetCursorPos(P.X, P.Y);
end;
Detlef "Ich habe Angst vor dem Tag, an dem die Technologie unsere menschlichen Interaktionen übertrumpft. Die Welt wird eine Generation von Idioten bekommen." (Albert Einstein)
Dieser Tag ist längst gekommen
|