Sub Class_Globals
Private Root As B4XView
Private xui As XUI
Private imgImagem As B4XImageView
Private lblFrase As B4XView
Private pnlFundo As B4XView
End Sub
Public Sub Initialize
End Sub
Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1
Root.LoadLayout("MainPage")
End Sub
Private Sub Button1_Click
Dim sf As Object = xui.Msgbox2Async("Test?", "Title", "Yes", "", "No", Null)
Wait For (sf) Msgbox_Result (Result As Int)
If Result = xui.DialogResponse_Positive Then
Log("Deleted!!!")
End If
End Sub
Private Sub Button2_Click
Dim sf As Object = xui.Msgbox2Async("Test?", "Title", "No", "", "Yes", Null)
Wait For (sf) Msgbox_Result (Result As Int)
If Result = xui.DialogResponse_Negative Then
Log("Deleted!!!")
End If
End Sub