mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 00:05:55 +01:00
f764c39cc1
Remove the outdated license text. Use the main cef.inc file in all Delphi demos. Fixed issue #493.
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
object MainForm: TMainForm
|
|
Left = 0
|
|
Top = 0
|
|
BorderIcons = [biSystemMenu, biMinimize]
|
|
BorderStyle = Single
|
|
Caption = 'Initializing browser. Please wait...'
|
|
ClientHeight = 23
|
|
ClientWidth = 404
|
|
Position = ScreenCenter
|
|
FormFactor.Width = 320
|
|
FormFactor.Height = 480
|
|
FormFactor.Devices = [Desktop]
|
|
OnCreate = FormCreate
|
|
OnCloseQuery = FormCloseQuery
|
|
OnShow = FormShow
|
|
DesignerMasterStyle = 0
|
|
object ButtonPnl: TPanel
|
|
Align = Client
|
|
Enabled = False
|
|
Size.Width = 404.000000000000000000
|
|
Size.Height = 23.000000000000000000
|
|
Size.PlatformDefault = False
|
|
TabOrder = 0
|
|
object AddressEdt: TEdit
|
|
Touch.InteractiveGestures = [LongTap, DoubleTap]
|
|
Align = Client
|
|
TabOrder = 0
|
|
Text = 'https://www.google.com'
|
|
Size.Width = 324.000000000000000000
|
|
Size.Height = 23.000000000000000000
|
|
Size.PlatformDefault = False
|
|
end
|
|
object OpenBtn: TButton
|
|
Align = Right
|
|
Position.X = 324.000000000000000000
|
|
Size.Width = 80.000000000000000000
|
|
Size.Height = 23.000000000000000000
|
|
Size.PlatformDefault = False
|
|
TabOrder = 1
|
|
Text = 'Open'
|
|
TextSettings.Trimming = None
|
|
OnClick = OpenBtnClick
|
|
end
|
|
end
|
|
end
|