<UserControl x:Class="abc.Cont.Controls.FullScreen.FullScreenView"
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:controls="clr-namespace:abc.Cont.Controls.FullScreen"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:md="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:plugins="clr-namespace:abc.UI;assembly=abc.Comp.Net6"
plugins:ViewModelLocator.AutoHookedUpViewModel="True"
mc:Ignorable="d"
xmlns:l="http://wpflocalizeextension.codeplex.com"
d:DesignHeight="638" d:DesignWidth="1514">
<Grid Background="#EEEEEE">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="34*" />
<RowDefinition Height="64*" />
</Grid.RowDefinitions>
<Border Background="#2D9545">
<Image VerticalAlignment="Center" HorizontalAlignment="Left"
Margin="40 0 0 0" Width="350" Source="/Content/loop.png"></Image>
</Border>
</Grid>
<md:Card VerticalAlignment="Center" HorizontalAlignment="Center"
Height="400" Width="500">
<ContentPresenter x:Name="contentPanel" />
</md:Card>
<Image VerticalAlignment="Bottom" HorizontalAlignment="Right"
Margin="0 0 -30 -90" Width="393" Height="277" Source="/Content/hotpot.png"></Image>
<TextBlock VerticalAlignment="Bottom" HorizontalAlignment="Left">
<Hyperlink Command="{Binding NavigateLinkCommand}">
<TextBlock Text="{l:Loc FullScreenView_TechSupportLinkDesc}" FontSize="22" />
</Hyperlink>
</TextBlock>
</Grid>
</UserControl>