mirror of
https://github.com/KeymonSoft/Guna_Picking.git
synced 2026-04-17 19:36:50 +00:00
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
AppType=JavaFX
|
|
Build1=Default,b4j.example
|
|
File1=MainPage.bjl
|
|
FileGroup1=New Group
|
|
Group=Default Group
|
|
Library1=jcore
|
|
Library2=jfx
|
|
Library3=b4xpages
|
|
Module1=|relative|..\B4XMainPage
|
|
NumberOfFiles=1
|
|
NumberOfLibraries=3
|
|
NumberOfModules=1
|
|
Version=8.31
|
|
@EndOfDesignText@
|
|
#Region Project Attributes
|
|
#MainFormWidth: 600
|
|
#MainFormHeight: 600
|
|
#End Region
|
|
|
|
Sub Process_Globals
|
|
Private fx As JFX
|
|
Private MainForm As Form
|
|
End Sub
|
|
|
|
Sub AppStart (Form1 As Form, Args() As String)
|
|
MainForm = Form1
|
|
MainForm.Show
|
|
Dim PagesManager As B4XPagesManager
|
|
PagesManager.Initialize(MainForm)
|
|
End Sub
|
|
|
|
'Template version: B4J-1.0
|
|
#Region Delegates
|
|
Sub MainForm_FocusChanged (HasFocus As Boolean)
|
|
B4XPages.Delegate.MainForm_FocusChanged(HasFocus)
|
|
End Sub
|
|
|
|
Sub MainForm_Resize (Width As Double, Height As Double)
|
|
B4XPages.Delegate.MainForm_Resize(Width, Height)
|
|
End Sub
|
|
|
|
Sub MainForm_Closed
|
|
B4XPages.Delegate.MainForm_Closed
|
|
End Sub
|
|
|
|
Sub MainForm_CloseRequest (EventData As Event)
|
|
B4XPages.Delegate.MainForm_CloseRequest(EventData)
|
|
End Sub
|
|
|
|
Public Sub MainForm_IconifiedChanged (Iconified As Boolean)
|
|
B4XPages.Delegate.MainForm_IconifiedChanged(Iconified)
|
|
End Sub
|
|
#End Region |