aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-11-22 09:36:25 +0200
committerShlomo Hecht <shlomo@twine-s.com>2018-11-22 09:36:25 +0200
commit9a4948a47198e6b965892a5d865ab7f973d22d55 (patch)
tree2c21d06a1dcf5535b001b6bc9841828b70b7bb7c /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
parent1bd70c13b4fa98709d1432e19f6513e082ad01f3 (diff)
parenta536bbb725c8e242d0203ca1253da44371b10435 (diff)
downloadTango-9a4948a47198e6b965892a5d865ab7f973d22d55.tar.gz
Tango-9a4948a47198e6b965892a5d865ab7f973d22d55.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_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.cs11
1 files changed, 11 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 f7e2e8260..d96f130ae 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
@@ -281,5 +281,16 @@ namespace Tango.MachineStudio.Developer.Views
{
listBoxSegments.SelectedItem = (sender as ListBoxItem).DataContext;
}
+
+ private void listBoxSegments_PreviewMouseDown(object sender, MouseButtonEventArgs e)
+ {
+
+ }
+
+ private void listBoxSegments_MouseEnter(object sender, MouseEventArgs e)
+ {
+ Keyboard.ClearFocus();
+ listBoxSegments.Focus();
+ }
}
}