Zooflow: Fix messageboxes without title
This commit is contained in:
@@ -14,11 +14,12 @@ Public Class frmMsgBox
|
||||
End Sub
|
||||
|
||||
Private Sub SimpleButton1_Click(sender As Object, e As EventArgs) Handles SimpleButton1.Click
|
||||
Dim oMsgbox = New NNMsgBoxEx("Hallo Welt!", "Ein Titel")
|
||||
Dim oMsgbox = New frmDialog("Diese Datei ist hier unerwünscht!", "Zooflow", frmDialog.DialogType.Error)
|
||||
oMsgbox.ShowDialog()
|
||||
End Sub
|
||||
|
||||
Private Sub SimpleButton2_Click(sender As Object, e As EventArgs) Handles SimpleButton2.Click
|
||||
MsgBox("Hallo Welt", MsgBoxStyle.OkOnly, "EinTitel")
|
||||
Dim oMsgbox = New frmDialog("Der Fluxkompensator ist leer. Bitte auffüllen!", "File Flow", frmDialog.DialogType.Warning)
|
||||
oMsgbox.ShowDialog()
|
||||
End Sub
|
||||
End Class
|
||||
@@ -18,7 +18,4 @@ Public Class frmObjectProperties
|
||||
Public ReadOnly Property LogConfig As LogConfig Implements IBaseForm.LogConfig
|
||||
|
||||
Public ReadOnly Property Logger As Logger Implements IBaseForm.Logger
|
||||
|
||||
Public ReadOnly Property ErrorHandler As BaseErrorHandler Implements IBaseForm.ErrorHandler
|
||||
|
||||
End Class
|
||||
Reference in New Issue
Block a user