aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2022-09-12 05:58:56 +0300
committerRoy <Roy.mail.net@gmail.com>2022-09-12 05:58:56 +0300
commit34cb4b4ffeebb27c579c58a81320fb974f366aed (patch)
tree009714dd5ea346c3ee13a6e805397cf82875d51c /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs
parentb31c6f64122ea7fbcab951ab0980b9a0db75b41b (diff)
parentea4957385f2d1a3da2a3a6f5e0db95ca624c8173 (diff)
downloadTango-34cb4b4ffeebb27c579c58a81320fb974f366aed.tar.gz
Tango-34cb4b4ffeebb27c579c58a81320fb974f366aed.zip
Added RML Extensions Washing properties.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs
index a75dc5d09..20be37970 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Views/TestResultsView.xaml.cs
@@ -52,5 +52,18 @@ namespace Tango.MachineStudio.ThreadExtensions.Views
}
}
}
+ private void Popup_MouseDown(object sender, MouseButtonEventArgs e)
+ {
+ e.Handled = true;
+ }
+ private void ColorCanvas_SelectedColorChanged(object sender, RoutedPropertyChangedEventArgs<Color?> e)
+ {
+ if (e.NewValue.HasValue)
+ {
+ //_vm.OnSelectedBrushColorChanged((Color)e.NewValue);
+ }
+ }
+
}
}
+