示例#1
0
文件: Msg.cs 项目: ricksam/Framework
 public static void Warning(string Message, string Title)
 {
     Forms.frmMsg f = new lib.Visual.Forms.frmMsg();
     f.setMessage(frmMsg.enmTypeMsg.Warning, Title, Message);
     f.ShowDialog();
 }
示例#2
0
文件: Msg.cs 项目: ricksam/Framework
 public static bool Question(string Message, string Title)
 {
     Forms.frmMsg f = new lib.Visual.Forms.frmMsg();
     f.setMessage(frmMsg.enmTypeMsg.Question, Title, Message);
     return(f.ShowDialog() == DialogResult.OK);
 }
示例#3
0
文件: Msg.cs 项目: ricksam/Framework
 public static void Information(string aMessage, string Title)
 {
     Forms.frmMsg f = new lib.Visual.Forms.frmMsg();
     f.setMessage(frmMsg.enmTypeMsg.Information, Title, aMessage);
     f.ShowDialog();
 }