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