/// <summary> /// 显示提示消息 /// </summary> /// <param name="p_msg"></param> public void Msg(string p_msg) { DlgEx.ShowMessage((_panel == null ? this : _panel.Child), p_msg, Res.BlackBrush); }
/// <summary> /// 显示警告提示信息 /// </summary> /// <param name="p_msg"></param> public void Warn(string p_msg) { DlgEx.ShowMessage((_panel == null ? this : _panel.Child), p_msg, Res.RedBrush); }