Exemple #1
0
 private static void ShowMesg(string mes, bool showYesNO, string title)
 {
     if (bInitialized)
     {
         framUI.ShowFormMesg(mes, showYesNO, title);
     }
     else
     {
         MessageBoxHintUI ShowMesg = new MessageBoxHintUI(mes, showYesNO, title);
         ShowMesg.ShowDialog();
     }
 }
Exemple #2
0
        private void ShowMesg(string str, bool showYesNO, string title)
        {
            MessageBoxHintUI ShowMesg = new MessageBoxHintUI(str, showYesNO, title);

            ShowMesg.ShowDialog();
        }