' Show info about this app using a 2nd modalform called about
Sub buttonAbout_Action
Dim mf As MessageForm
Dim rt As Int
mf.Initialize(MainForm, "About...", "Hello World")
mf.textareaMessage.Style = "-fx-font-size: 1.0em; -fx-Font-family: 'Segoe UI Semibold'; -fx-text-fill: red; -fx-opacity: 0.6; "
rt = mf.Show
End Sub