aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Views/MachineTechView.xaml
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-02-08 14:26:17 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-02-08 14:26:17 +0200
commita1432b11d087a4b2f4530504e18434225b36bf48 (patch)
treef3cd718c99872544f3c7a69eadcd27d5aa77911c /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Views/MachineTechView.xaml
parent4cf9cd72047bbb5a1c83255721870d29bbdb03f7 (diff)
downloadTango-a1432b11d087a4b2f4530504e18434225b36bf48.tar.gz
Tango-a1432b11d087a4b2f4530504e18434225b36bf48.zip
Moved all tech work to Technician module.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Views/MachineTechView.xaml')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Views/MachineTechView.xaml75
1 files changed, 75 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Views/MachineTechView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Views/MachineTechView.xaml
new file mode 100644
index 000000000..256a4a385
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/Views/MachineTechView.xaml
@@ -0,0 +1,75 @@
+<UserControl x:Class="Tango.MachineStudio.Technician.Views.MachineTechView"
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ xmlns:vm="clr-namespace:Tango.MachineStudio.Technician.ViewModels"
+ xmlns:global="clr-namespace:Tango.MachineStudio.Technician"
+ xmlns:editors="clr-namespace:Tango.Editors;assembly=Tango.Editors"
+ xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
+ xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls"
+ xmlns:converters="clr-namespace:Tango.SharedUI.Converters;assembly=Tango.SharedUI"
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+ xmlns:local="clr-namespace:Tango.MachineStudio.Technician.Views"
+ mc:Ignorable="d"
+ d:DesignHeight="720" d:DesignWidth="1280" Background="White" d:DataContext="{d:DesignInstance Type=vm:MachineTechViewVM, IsDesignTimeCreatable=False}" DataContext="{x:Static global:ViewModelLocator.MachineTechViewVM}">
+
+ <UserControl.Resources>
+ <ResourceDictionary Source="pack://application:,,,/Tango.MachineStudio.Common;component/Resources/MaterialDesign.xaml"></ResourceDictionary>
+ </UserControl.Resources>
+
+ <Grid>
+ <Grid>
+ <Grid.RowDefinitions>
+ <RowDefinition Height="150"/>
+ <RowDefinition Height="199*"/>
+ </Grid.RowDefinitions>
+
+ <Grid>
+ <Grid.RowDefinitions>
+ <RowDefinition Height="Auto"/>
+ <RowDefinition Height="1*"/>
+ </Grid.RowDefinitions>
+
+ <Menu Padding="5">
+ <MenuItem Header="File"></MenuItem>
+ <MenuItem Header="Edit"></MenuItem>
+ <MenuItem Header="View"></MenuItem>
+ </Menu>
+
+ <Grid Grid.Row="1">
+
+ </Grid>
+ </Grid>
+
+ <Grid Grid.Row="1" Margin="5">
+ <Grid.ColumnDefinitions>
+ <ColumnDefinition Width="1*"/>
+ <ColumnDefinition Width="220"/>
+ </Grid.ColumnDefinitions>
+
+ <Grid>
+ <editors:ElementsEditor
+ Elements="{Binding Elements}"
+ ElementCreation="ElementsEditor_ElementCreation"
+ Margin="0 0 5 0"
+ RulerHeight="32"
+ FontSize="10"
+ Background="White"
+ EditorBackground="White"
+ RulerBackground="White"
+ Foreground="{StaticResource AccentColorBrush}"
+ SelectionFillBrush="#338D8D8D"
+ SelectionStrokeBrush="{StaticResource AccentColorBrush}"
+ BorderBrush="{StaticResource AccentColorBrush}"
+ BorderThickness="1" />
+ </Grid>
+
+ <Grid Grid.Column="1">
+ <GroupBox Header="PROPERTIES">
+
+ </GroupBox>
+ </Grid>
+ </Grid>
+ </Grid>
+ </Grid>
+</UserControl>