示例#1
0
 public InformerMessage(InformerMessageWindow window, string[] messages)
 {
     this.window   = window;
     this.messages = messages;
 }
示例#2
0
 public InformerMessageCMD(InformerMessageWindow type, TextBox textBox)
 {
     this.type    = type;
     this.textBox = textBox;
 }
示例#3
0
 public InformerMessage(InformerMessageWindow window, string message)
 {
     this.window   = window;
     this.messages = new string[] { message };
 }