Beispiel #1
0
 private void Architect_Notice(IArchitect architect, ArchitectNoticeEventArgs e)
 {
     //throw new Exception(e.message);
     textBox2.Dispatcher.BeginInvoke(new AddArchitectNoticeDelegate(AddArchitectMessage),
         System.Windows.Threading.DispatcherPriority.Send, e.message);
 }
Beispiel #2
0
 public void Architect_Warning(IArchitect architect, ArchitectWarningEventArgs e)
 {
     textBox2.Dispatcher.BeginInvoke(new AddArchitectNoticeDelegate(AddArchitectMessage),
         System.Windows.Threading.DispatcherPriority.Send, e.message);
 }
Beispiel #3
0
 public void Architect_Question(IArchitect architect, ArchitectQuestionEventArgs e)
 {
     textBox2.Dispatcher.BeginInvoke(new AddArchitectNoticeDelegate(AddArchitectMessage),
         System.Windows.Threading.DispatcherPriority.Send, e.questionText);
 }
Beispiel #4
0
 public void Architect_Warning(IArchitect architect, ArchitectWarningEventArgs e)
 {
     textBox2.Dispatcher.BeginInvoke(new AddArchitectNoticeDelegate(AddArchitectMessage),
                                     System.Windows.Threading.DispatcherPriority.Send, e.message);
 }
Beispiel #5
0
 public void Architect_Question(IArchitect architect, ArchitectQuestionEventArgs e)
 {
     textBox2.Dispatcher.BeginInvoke(new AddArchitectNoticeDelegate(AddArchitectMessage),
                                     System.Windows.Threading.DispatcherPriority.Send, e.questionText);
 }
Beispiel #6
0
 private void Architect_Notice(IArchitect architect, ArchitectNoticeEventArgs e)
 {
     //throw new Exception(e.message);
     textBox2.Dispatcher.BeginInvoke(new AddArchitectNoticeDelegate(AddArchitectMessage),
                                     System.Windows.Threading.DispatcherPriority.Send, e.message);
 }