aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SimulateTouch.UI/MainWindow.xaml
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2020-06-03 11:45:55 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2020-06-03 11:45:55 +0300
commit686937fc57d5020a55590612e8cdd50acf1794c5 (patch)
treeb9bd49dc8485f31559cd8180871268e1efaa909d /Software/Visual_Studio/Tango.SimulateTouch.UI/MainWindow.xaml
parentfa4b140630ff8b39bfeb85affe5e42bcb53d02e9 (diff)
downloadTango-686937fc57d5020a55590612e8cdd50acf1794c5.tar.gz
Tango-686937fc57d5020a55590612e8cdd50acf1794c5.zip
Added New project SimulateTouch.UI to Utilities
Related Work Items: #2909
Diffstat (limited to 'Software/Visual_Studio/Tango.SimulateTouch.UI/MainWindow.xaml')
-rw-r--r--Software/Visual_Studio/Tango.SimulateTouch.UI/MainWindow.xaml23
1 files changed, 23 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.SimulateTouch.UI/MainWindow.xaml b/Software/Visual_Studio/Tango.SimulateTouch.UI/MainWindow.xaml
new file mode 100644
index 000000000..0a3049cb0
--- /dev/null
+++ b/Software/Visual_Studio/Tango.SimulateTouch.UI/MainWindow.xaml
@@ -0,0 +1,23 @@
+<Window x:Class="Tango.SimulateTouch.UI.MainWindow"
+ 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:local="clr-namespace:Tango.SimulateTouch.UI"
+ mc:Ignorable="d"
+ Title="MainWindow" Height="450" Width="800" >
+ <Grid Background="White" x:Name="GdRootZm">
+ <Border Width="200" BorderBrush="Silver" BorderThickness="1" CornerRadius="5" VerticalAlignment="Bottom" HorizontalAlignment="Right"
+ Margin="50" Background="White" x:Name="BdrSimulateZm">
+ <StackPanel Orientation="Vertical" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
+ <Border Margin="3" Height="45" BorderBrush="Blue" BorderThickness="1" CornerRadius="2" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
+ <TextBlock x:Name="messageTextBlock" Height="45" Width="Auto" Background="Azure" ></TextBlock>
+ </Border>
+ <Border Margin="3" Height="45" BorderBrush="Blue" BorderThickness="1" CornerRadius="2" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
+ <TextBlock x:Name="TouchUpTextBlock" Height="45" Width="Auto" Background="Azure" ></TextBlock>
+ </Border>
+ <Button Margin="0 20 0 0 " Width="200" PreviewMouseLeftButtonDown="OnButtonLeftButtonDown">Touch Button</Button>
+ </StackPanel>
+ </Border>
+ </Grid>
+</Window>