40 lines
2.5 KiB
XML
40 lines
2.5 KiB
XML
<local:MyPageRight x:Class="PCL.PageInstanceModDisabled"
|
|||
|
|
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:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:local="clr-namespace:PCL"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
||
|
|
<local:MyCard HorizontalAlignment="Center" VerticalAlignment="Center" Margin="40" x:Name="PanMain">
|
||
|
|
<Grid Margin="20,17">
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="1*" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="1*" />
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<TextBlock Grid.Row="0" Grid.ColumnSpan="4" Margin="0,0,0,9" HorizontalAlignment="Center"
|
||
|
|
Text="{DynamicResource Instance.Resource.Mod.Disabled.Title}" FontSize="19" UseLayoutRounding="True"
|
||
|
|
SnapsToDevicePixels="True"
|
||
|
|
Foreground="{DynamicResource ColorBrush3}" />
|
||
|
|
<Rectangle Grid.Row="1" Grid.ColumnSpan="4" HorizontalAlignment="Stretch" Height="2"
|
||
|
|
Fill="{DynamicResource ColorBrush3}" />
|
||
|
|
<TextBlock Grid.Row="2" Grid.ColumnSpan="4" Margin="10,15,10,5"
|
||
|
|
Text="{DynamicResource Instance.Resource.Mod.Disabled.Message}"
|
||
|
|
TextWrapping="Wrap" />
|
||
|
|
<local:MyButton Grid.Row="3" Grid.Column="1" Height="35" HorizontalAlignment="Center" x:Name="BtnDownload"
|
||
|
|
MinWidth="140" Text="{DynamicResource Instance.Resource.Mod.Disabled.GoDownload}"
|
||
|
|
Margin="10,10,10,0" Padding="13,0" ColorType="Highlight" />
|
||
|
|
<local:MyButton Grid.Row="3" Grid.Column="2" Height="35" HorizontalAlignment="Center" x:Name="BtnVersion"
|
||
|
|
MinWidth="140" Text="{DynamicResource Instance.Resource.Mod.Disabled.SelectInstance}"
|
||
|
|
Margin="10,10,10,0" Padding="13,0" />
|
||
|
|
</Grid>
|
||
|
|
</local:MyCard>
|
||
|
|
</local:MyPageRight>
|