aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs
index cdf2248a6..16427c42b 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs
@@ -54,8 +54,18 @@ namespace Tango.MachineStudio.Developer.Views
ViewAttached?.Invoke(this, this);
};
- chkGraphs.Checked += (x, y) => { graphRowDefinition.Height = new GridLength(440, GridUnitType.Pixel); };
- chkGraphs.Unchecked += (x, y) => { graphRowDefinition.Height = new GridLength(80, GridUnitType.Pixel); };
+ chkGraphs.Checked += (x, y) =>
+ {
+ graphRowDefinition.Height = new GridLength(440, GridUnitType.Pixel);
+ //dockCameras.Width = 270;
+ //dockCameras.Height = 600;
+ };
+ chkGraphs.Unchecked += (x, y) =>
+ {
+ graphRowDefinition.Height = new GridLength(80, GridUnitType.Pixel);
+ //dockCameras.Width = 330;
+ //dockCameras.Height = 850;
+ };
_jobBrushTimer = new DispatcherTimer();
_jobBrushTimer.Interval = TimeSpan.FromSeconds(1);