mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-17 00:35:55 +01:00
41 lines
756 B
Plaintext
41 lines
756 B
Plaintext
|
object MainForm: TMainForm
|
||
|
Left = 0
|
||
|
Top = 0
|
||
|
Caption = 'MVCAsync Sample'
|
||
|
ClientHeight = 181
|
||
|
ClientWidth = 503
|
||
|
Color = clBtnFace
|
||
|
Font.Charset = DEFAULT_CHARSET
|
||
|
Font.Color = clWindowText
|
||
|
Font.Height = -12
|
||
|
Font.Name = 'Segoe UI'
|
||
|
Font.Style = []
|
||
|
TextHeight = 15
|
||
|
object btnAsync1: TButton
|
||
|
Left = 16
|
||
|
Top = 16
|
||
|
Width = 161
|
||
|
Height = 41
|
||
|
Caption = 'Async Test'
|
||
|
TabOrder = 0
|
||
|
OnClick = btnAsync1Click
|
||
|
end
|
||
|
object Edit1: TEdit
|
||
|
Left = 16
|
||
|
Top = 72
|
||
|
Width = 161
|
||
|
Height = 23
|
||
|
TabOrder = 1
|
||
|
Text = 'Edit1'
|
||
|
end
|
||
|
object btnWithEx: TButton
|
||
|
Left = 224
|
||
|
Top = 16
|
||
|
Width = 161
|
||
|
Height = 41
|
||
|
Caption = 'Async Test With Exception'
|
||
|
TabOrder = 2
|
||
|
OnClick = btnWithExClick
|
||
|
end
|
||
|
end
|