Exemplo n.º 1
0
        public static void ShowMessageBox(string title, string context)
        {
            CWMessageBox cwMessageBox = new CWMessageBox();

            cwMessageBox.Message.Text = context;

            if (!string.IsNullOrEmpty(title))
            {
                cwMessageBox.Title = title;
            }

            cwMessageBox.Show();
        }
Exemplo n.º 2
0
        public static void ShowMessageBox(string title, string context)
        {
            CWMessageBox cwMessageBox = new CWMessageBox();
            cwMessageBox.Message.Text = context;

            if (!string.IsNullOrEmpty(title))
                cwMessageBox.Title = title;

            cwMessageBox.Show();
        }