Registriert seit: 10. Mär 2005
Ort: Mitten in Deutschland
332 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: UniGui und TShape
2. Mai 2023, 15:36
So mache ich es normal unter Delphi beimTImage
Delphi-Quellcode:
Shape ist ein TShape;
OnMouseDown
Shape.Left := X;
Shape.Top := Y;
Shape.Width := 0;
Shape.Height := 0;
OnMouseMove
Shape.Width := X - Shape.Left;
Shape.Height := Y - Shape.Top;
OnMouseUP
Shape.Width := X - Shape.Left;
Shape.Height := Y - Shape.Top;
Repaint;
Tanja
|