/// <summary> /// 显示消息 /// </summary> /// <param name="isShow">是否显示</param> /// <param name="button">显示按钮</param> /// <param name="image">显示图片</param> /// <param name="msgKey">消息文本密钥</param> /// <param name="args">参数</param> /// <returns>按钮结果</returns> public static MessageBoxResult ShowSystemMessage(bool isShow, MessageBoxButton button, MessageBoxImage image, string msgKey, params object[] args) { if (!isShow) { return(MessageBoxResult.Cancel); } string caption = Globals.GetStringFromCurrentLanguage(msgKey + "_Title"); string msg = Globals.GetStringFromCurrentLanguage(msgKey + "_Message"); msg = string.IsNullOrEmpty(msg) ? "" : string.Format(msg, args); return(MessageBox.Show(msg, caption, button, image)); }
/// <summary> /// 异常消息 /// </summary> /// <param name="msg">基本消息</param> /// <returns>完整消息</returns> public static string ExceptionMsg(string msg) { string info = msg; StackTrace st = new StackTrace(true); //得到当前的所以堆栈 string format = Globals.GetStringFromCurrentLanguage("ERR_CommonNewException") is string text? text : "{0}"; StackFrame[] sf = st.GetFrames(); if (sf != null) { for (int i = 1; i < sf.Length; ++i) { info = string.Format(format, info, sf[i].GetFileName(), sf[i].GetMethod().DeclaringType?.FullName, sf[i].GetMethod().Name, sf[i].GetFileLineNumber()); } } return(info); }