コード例 #1
0
 public NAOThalamusStatus()
 {
     InitializeComponent();
     controller = new NAOThalamusGUIController(shellControl, this.DataContext as NAOStatus);
     controller.Error += controller_Error;
     controller.Start();
 }
コード例 #2
0
 void controller_Error(object sender, NAOThalamusGUIController.NAOThalamusGUIErrorEventArgs e)
 {
     MessageBox.Show(e.Description);
 }