aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2018-07-17 15:44:17 +0300
committerAvi Levkovich <avi@twine-s.com>2018-07-17 15:44:17 +0300
commit316552019c43e27114669a7f3e6138902c9d8220 (patch)
tree8b0f8ff0645f721718e60ff1cc9c0c76f2537ebc /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
parentaf99264e5ca64bcb0173f2586c2295fc0cb21d75 (diff)
parentf4aad3bc7f9d4c457805a233f969938ef341b22c (diff)
downloadTango-316552019c43e27114669a7f3e6138902c9d8220.tar.gz
Tango-316552019c43e27114669a7f3e6138902c9d8220.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
index b48e91f31..bb17a502d 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
@@ -242,5 +242,28 @@ namespace Tango.MachineStudio.Developer.Views
editor.ParameterizedObject = draggedItem.ParameterizedObject;
}
}
+
+ private void PopupButton_Checked(object sender, RoutedEventArgs e)
+ {
+ _vm.OnHivePopupOpened();
+ }
+
+ private void BrushPicker_ColorChanged(object sender, BrushPicker.ColorChangedEventArgs e)
+ {
+
+ }
+
+ private void ColorCanvas_SelectedColorChanged(object sender, RoutedPropertyChangedEventArgs<Color?> e)
+ {
+ if (e.NewValue.HasValue)
+ {
+ _vm.OnSelectedBrushColorChanged((Color)e.NewValue);
+ }
+ }
+
+ private void PopupButton_Unchecked(object sender, RoutedEventArgs e)
+ {
+ _vm.OnHivePopupClosed();
+ }
}
}