| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- object frMain: TfrMain
- Left = 248
- Height = 240
- Top = 154
- Width = 390
- Caption = 'String example'
- ClientHeight = 240
- ClientWidth = 390
- OnCreate = FormCreate
- OnDestroy = FormDestroy
- Position = poDesktopCenter
- LCLVersion = '2.0.10.0'
- object lbDesc: TLabel
- Left = 10
- Height = 17
- Top = 10
- Width = 370
- Align = alTop
- Alignment = taCenter
- AutoSize = False
- BorderSpacing.Around = 10
- Caption = 'This example show a basic usage of TBrookString'
- Font.Style = [fsBold]
- ParentColor = False
- ParentFont = False
- end
- object btAddNow: TButton
- Left = 16
- Height = 25
- Top = 40
- Width = 112
- Caption = '&Add now'
- OnClick = btAddNowClick
- TabOrder = 0
- end
- object btShowContent: TButton
- Left = 136
- Height = 25
- Top = 40
- Width = 112
- Caption = '&Show content'
- Enabled = False
- OnClick = btShowContentClick
- TabOrder = 1
- end
- object btClear: TButton
- Left = 256
- Height = 25
- Top = 40
- Width = 112
- Caption = '&Clear'
- Enabled = False
- OnClick = btClearClick
- TabOrder = 2
- end
- end
|