CEF4Delphi/demos/Delphi_VCL/ToolBoxSubProcessBrowser/uMainForm.dfm
Salvador Díaz Fau f764c39cc1 Replace the SetPEFlags code
Remove the outdated license text.
Use the main cef.inc file in all Delphi demos.
Fixed issue #493.
2023-11-26 19:28:28 +01:00

52 lines
1021 B
Plaintext

object MainForm: TMainForm
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Initializing browser. Please wait...'
ClientHeight = 37
ClientWidth = 357
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Position = poScreenCenter
OnCreate = FormCreate
OnShow = FormShow
TextHeight = 13
object ButtonPnl: TPanel
Left = 0
Top = 0
Width = 357
Height = 37
Align = alClient
BevelOuter = bvNone
Enabled = False
TabOrder = 0
object Edit1: TEdit
Left = 8
Top = 8
Width = 286
Height = 21
TabOrder = 0
Text = 'https://www.google.com'
end
object Button1: TButton
Left = 300
Top = 6
Width = 51
Height = 25
Caption = 'Open'
TabOrder = 1
OnClick = Button1Click
end
end
object Timer1: TTimer
Enabled = False
OnTimer = Timer1Timer
Left = 152
end
end