37 lines
718 B
ObjectPascal
37 lines
718 B
ObjectPascal
|
|
object Form1: TForm1
|
||
|
|
Left = 0
|
||
|
|
Top = 0
|
||
|
|
Caption = 'Form1'
|
||
|
|
ClientHeight = 600
|
||
|
|
ClientWidth = 600
|
||
|
|
Color = clBtnFace
|
||
|
|
Font.Charset = DEFAULT_CHARSET
|
||
|
|
Font.Color = clWindowText
|
||
|
|
Font.Height = -11
|
||
|
|
Font.Name = 'Tahoma'
|
||
|
|
Font.Style = []
|
||
|
|
OldCreateOrder = False
|
||
|
|
OnPaint = FormPaint
|
||
|
|
PixelsPerInch = 96
|
||
|
|
TextHeight = 13
|
||
|
|
object lblPosition: TLabel
|
||
|
|
Left = 500
|
||
|
|
Top = 0
|
||
|
|
Width = 100
|
||
|
|
Height = 21
|
||
|
|
Alignment = taCenter
|
||
|
|
AutoSize = False
|
||
|
|
Caption = '(0,0)'
|
||
|
|
Font.Charset = DEFAULT_CHARSET
|
||
|
|
Font.Color = clWhite
|
||
|
|
Font.Height = -20
|
||
|
|
Font.Name = 'Tahoma'
|
||
|
|
Font.Style = []
|
||
|
|
ParentFont = False
|
||
|
|
end
|
||
|
|
object tmr1: TTimer
|
||
|
|
Interval = 500
|
||
|
|
OnTimer = tmr1Timer
|
||
|
|
end
|
||
|
|
end
|