啊鑫
2024-10-25 cefcc903f51610846fa313a3a35bca34e129c1fe
DevApp/Gs.DevApp/ToolBox/MsgHelper.cs
@@ -4,12 +4,12 @@
namespace Gs.DevApp.ToolBox
{
    /// <summary>
    ///  系统消息提示窗体
    ///     系统消息提示窗体
    /// </summary>
    public class MsgHelper
    {
        /// <summary>
        ///  打开对话框
        ///     打开对话框
        /// </summary>
        /// <param name="msg">本次对话内容</param>
        /// <returns></returns>
@@ -24,7 +24,7 @@
        }
        /// <summary>
        ///  错误消息提示框
        ///     错误消息提示框
        /// </summary>
        /// <param name="msg">错误消息内容</param>
        public static void ShowError(string msg)
@@ -36,7 +36,7 @@
        }
        /// <summary>
        ///  显示系统异常
        ///     显示系统异常
        /// </summary>
        /// <param name="e">系统异常</param>
        public static void ShowException(Exception e)
@@ -70,7 +70,7 @@
        }
        /// <summary>
        ///  信息提示框
        ///     信息提示框
        /// </summary>
        /// <param name="msg">本次显示的消息</param>
        public static void ShowInformation(string msg)
@@ -82,7 +82,7 @@
        }
        /// <summary>
        ///  警告提示框
        ///     警告提示框
        /// </summary>
        /// <param name="msg">警告内容</param>
        public static void Warning(string msg)
@@ -93,4 +93,4 @@
                MessageBoxDefaultButton.Button1);
        }
    }
}
}