mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
object MainForm: TMainForm
|
|
Left = 271
|
|
Top = 114
|
|
Caption = 'Swagger Doc API - Extended'
|
|
ClientHeight = 165
|
|
ClientWidth = 324
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OnCreate = FormCreate
|
|
OnShow = FormShow
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Label1: TLabel
|
|
Left = 24
|
|
Top = 48
|
|
Width = 20
|
|
Height = 13
|
|
Caption = 'Port'
|
|
end
|
|
object ButtonStart: TButton
|
|
Left = 24
|
|
Top = 8
|
|
Width = 75
|
|
Height = 25
|
|
Caption = 'Start'
|
|
TabOrder = 0
|
|
OnClick = ButtonStartClick
|
|
end
|
|
object ButtonStop: TButton
|
|
Left = 105
|
|
Top = 8
|
|
Width = 75
|
|
Height = 25
|
|
Caption = 'Stop'
|
|
TabOrder = 1
|
|
OnClick = ButtonStopClick
|
|
end
|
|
object EditPort: TEdit
|
|
Left = 24
|
|
Top = 67
|
|
Width = 121
|
|
Height = 21
|
|
TabOrder = 2
|
|
Text = '8080'
|
|
end
|
|
object ButtonOpenBrowser: TButton
|
|
Left = 24
|
|
Top = 112
|
|
Width = 107
|
|
Height = 25
|
|
Caption = 'Open Browser'
|
|
TabOrder = 3
|
|
OnClick = ButtonOpenBrowserClick
|
|
end
|
|
object ApplicationEvents1: TApplicationEvents
|
|
OnIdle = ApplicationEvents1Idle
|
|
Left = 224
|
|
Top = 40
|
|
end
|
|
end
|