示例#1
0
 public WiimotePanel(WiimoteTracker tracker)
 {
     InitializeComponent();
     try
     {
         DataContext = tracker;
     }
     catch (Exception exc)
     {
     }
 }
示例#2
0
 public WiimotePanel(WiimoteTracker tracker)
 {
     InitializeComponent();
     try
     {
         DataContext = tracker;
     }
     catch (Exception exc)
     {
     }
 }
 public WiimotePlugin()
 {
     try
     {
         Name = "Nintendo Wiimote";
         var tracker = new WiimoteTracker();
         Content = tracker;
         Panel   = null;
     }
     catch (Exception exc)
     {
         Logger.Instance.Error(string.Format("Error while loading '{0}'", GetType().FullName), exc);
     }
 }