12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- object MainForm: TMainForm
- Left = 833
- Top = 165
- Caption = 'Curves Example'
- ClientHeight = 560
- ClientWidth = 527
- Color = clBtnFace
- ParentFont = True
- OnShow = BtnDrawCurveClick
- TextHeight = 15
- object Paintbox: TPaintBox32
- Left = 0
- Top = 0
- Width = 527
- Height = 519
- Align = alClient
- TabOrder = 0
- OnClick = PaintboxClick
- OnPaintBuffer = PaintboxPaintBuffer
- end
- object Panel1: TPanel
- Left = 0
- Top = 519
- Width = 527
- Height = 41
- Align = alBottom
- BevelOuter = bvNone
- ShowCaption = False
- TabOrder = 1
- object BtnDrawCurve: TButton
- Left = 8
- Top = 7
- Width = 97
- Height = 25
- Caption = 'Draw Curve'
- TabOrder = 0
- OnClick = BtnDrawCurveClick
- end
- object CbxUpdate: TCheckBox
- Left = 119
- Top = 11
- Width = 88
- Height = 17
- Caption = 'Timer'
- TabOrder = 1
- OnClick = CbxUpdateClick
- end
- end
- end
|