Beispiel #1
0
 private void PushButton_Released(IPushButton sender, EmptyEventArgs args)
 {
     Dispatcher.Run(() =>
     {
         AddOutput("Released");
         ColorDot.Fill = new SolidColorBrush(Colors.Yellow);
     });
 }
Beispiel #2
0
 private void Rotary_Click(IPushButton sender, EmptyEventArgs args)
 {
     Dispatcher.Run(() =>
     {
         AddOutput("Rotary clicked");
     });
 }
Beispiel #3
0
 private void PushButton_Click(IPushButton sender, EmptyEventArgs args)
 {
     Dispatcher.Run(() => AddOutput("Click"));
 }