aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/InputWindow.xaml
diff options
context:
space:
mode:
authorMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
committerMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
commit00a491d93733d4625ad329b2ba8237f445364b3f (patch)
tree4b24c6fa78d7648f4bb7cefafa464bb0b063fec4 /Software/Visual_Studio/Utilities/Tango.MachineEM.UI/InputWindow.xaml
parent124ad4150f80c6846fdee41dbbda9848c105f6e5 (diff)
downloadTango-00a491d9.tar.gz
Tango-00a491d9.zip
merge
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.MachineEM.UI/InputWindow.xaml')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.MachineEM.UI/InputWindow.xaml25
1 files changed, 0 insertions, 25 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/InputWindow.xaml b/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/InputWindow.xaml
deleted file mode 100644
index 05a4b33cd..000000000
--- a/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/InputWindow.xaml
+++ /dev/null
@@ -1,25 +0,0 @@
-<Window x:Class="Tango.MachineEM.UI.InputWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls"
- xmlns:local="clr-namespace:Tango.MachineEM.UI"
- mc:Ignorable="d"
- Title="Input" Height="250" Width="600">
- <Grid>
- <DockPanel>
- <UniformGrid Columns="2" DockPanel.Dock="Bottom" HorizontalAlignment="Right" Height="45">
- <Button x:Name="btnCancel" Width="150" Margin="5" Style="{StaticResource AccentedSquareButtonStyle}" BorderThickness="0" mahapps:ButtonHelper.PreserveTextCase="True">CANCEL</Button>
- <Button IsDefault="True" x:Name="btnOK" Width="150" Margin="5" Style="{StaticResource AccentedSquareButtonStyle}" BorderThickness="0" mahapps:ButtonHelper.PreserveTextCase="True">OK</Button>
- </UniformGrid>
-
- <Rectangle DockPanel.Dock="Bottom" Stroke="#494949" StrokeThickness="1" />
-
- <StackPanel Margin="40">
- <TextBlock x:Name="txtMessage" Text="Please enter a value" Foreground="Gainsboro"></TextBlock>
- <TextBox x:Name="txtValue" Margin="0 10 120 0"></TextBox>
- </StackPanel>
- </DockPanel>
- </Grid>
-</Window>