aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.WatchDog/MainWindow.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.WatchDog/MainWindow.xaml')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.WatchDog/MainWindow.xaml35
1 files changed, 35 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.WatchDog/MainWindow.xaml b/Software/Visual_Studio/PPC/Tango.PPC.WatchDog/MainWindow.xaml
new file mode 100644
index 000000000..4e772e774
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.WatchDog/MainWindow.xaml
@@ -0,0 +1,35 @@
+<Window x:Class="Tango.PPC.WatchDog.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.PPC.WatchDog"
+ mc:Ignorable="d"
+ Title="Tango Watch Dog" Background="Transparent" AllowsTransparency="True" Height="250" Width="500" WindowStartupLocation="CenterScreen" WindowStyle="None" ResizeMode="NoResize" Icon="/cat.png"
+ d:DataContext="{d:DesignInstance Type=local:MainWindowVM, IsDesignTimeCreatable=False}">
+ <Grid>
+ <Border Margin="10" BorderThickness="1" BorderBrush="DimGray">
+ <Border.Effect>
+ <DropShadowEffect ShadowDepth="0" BlurRadius="10" Color="Black" />
+ </Border.Effect>
+ <DockPanel>
+ <Border DockPanel.Dock="Top" BorderThickness="0 0 0 1" BorderBrush="Gainsboro" Background="#202020" Padding="10">
+ <DockPanel>
+ <Image Source="/cat.png" Stretch="Uniform" Height="32" RenderOptions.BitmapScalingMode="Fant" />
+ <TextBlock Margin="10 0 0 0" Foreground="Gainsboro" VerticalAlignment="Center">Tango Watch Dog</TextBlock>
+ <Button DockPanel.Dock="Right" Width="24" Height="24" HorizontalAlignment="Right" Cursor="Hand">
+ <Button.Template>
+ <ControlTemplate TargetType="Button">
+ <Image Source="/close.png" Width="12" Height="12"></Image>
+ </ControlTemplate>
+ </Button.Template>
+ </Button>
+ </DockPanel>
+ </Border>
+ <Grid Background="Gray">
+
+ </Grid>
+ </DockPanel>
+ </Border>
+ </Grid>
+</Window>