diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-28 19:40:35 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-28 19:40:35 +0200 |
| commit | 7e8ff4c3ca798d426eb6f381c5312a747f1bb800 (patch) | |
| tree | cf9702617f9771412c78294ad742c308007ebce1 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs | |
| parent | 10eec8df1dfce197b31d51cfa49746b0ce07a5e5 (diff) | |
| download | Tango-7e8ff4c3ca798d426eb6f381c5312a747f1bb800.tar.gz Tango-7e8ff4c3ca798d426eb6f381c5312a747f1bb800.zip | |
Implemented all color spaces on segment brushes (simple conversion).
Embedded ColorMine library as a SideChain.
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.cs | 3 |
1 files changed, 3 insertions, 0 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 9eeff4975..c4e853433 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 @@ -42,6 +42,9 @@ namespace Tango.MachineStudio.Developer.Views { _vm = DataContext as MainViewVM; }; + + chkGraphs.Checked += (x, y) => { graphRowDefinition.Height = new GridLength(161, GridUnitType.Star); }; + chkGraphs.Unchecked += (x, y) => { graphRowDefinition.Height = new GridLength(80, GridUnitType.Pixel); }; } private void OnDropAvailableSensor(object sender, DropEventArgs e) |
