diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-08 13:11:43 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-08 13:11:43 +0200 |
| commit | 4cf9cd72047bbb5a1c83255721870d29bbdb03f7 (patch) | |
| tree | 62f9088a8342270eb585015a75cd171a04c390bb /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech | |
| parent | 0907f58b81e29d9c0f415e2c7660ad60787f281b (diff) | |
| download | Tango-4cf9cd72047bbb5a1c83255721870d29bbdb03f7.tar.gz Tango-4cf9cd72047bbb5a1c83255721870d29bbdb03f7.zip | |
Added new tech tables..
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech')
2 files changed, 90 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech/MachineTechView.xaml b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech/MachineTechView.xaml new file mode 100644 index 000000000..192122a30 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech/MachineTechView.xaml @@ -0,0 +1,62 @@ +<UserControl x:Class="Tango.MachineStudio.Common.MachineTech.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.Common.ViewModels" + xmlns:global="clr-namespace:Tango.MachineStudio.Common" + 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.Common.MachineTech" + 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 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> diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech/MachineTechView.xaml.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech/MachineTechView.xaml.cs new file mode 100644 index 000000000..6546fd09e --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineTech/MachineTechView.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.MachineStudio.Common.MachineTech +{ + /// <summary> + /// Interaction logic for MachineTechView.xaml + /// </summary> + public partial class MachineTechView : UserControl + { + public MachineTechView() + { + InitializeComponent(); + } + } +} |
