Example #1
0
        public static void ShowMessage(string msg)
        {
            ExceptionPopup popup = new ExceptionPopup();

            popup.TBMeme.Text      = GetRandomMeme();
            popup.TBException.Text = msg;
            popup.ShowDialog();
        }
Example #2
0
        public static void ShowException(Exception ex)
        {
            ExceptionPopup popup = new ExceptionPopup();

            popup.TBMeme.Text      = GetRandomMeme();
            popup.TBException.Text = ex.Message;
            popup.ShowDialog();
        }