Files
MRCC/launcher/PCL-CE/Plain Craft Launcher 2/Controls/MyButton.xaml
T

22 lines
1.2 KiB
XML
Raw Normal View History

<Border x:Class="PCL.MyButton"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
FocusVisualStyle="{x:Null}" x:Name="PanBack"
Focusable="True" UseLayoutRounding="False" SnapsToDevicePixels="False"
Background="{StaticResource ColorBrushSemiTransparent}">
<Border CornerRadius="3" x:Name="PanFore" BorderThickness="1" BorderBrush="{DynamicResource ColorBrush1}"
RenderTransformOrigin="0.5,0.5" Background="{DynamicResource ColorBrushHalfWhite}">
<Border.RenderTransform>
<ScaleTransform />
</Border.RenderTransform>
<TextBlock TextOptions.TextFormattingMode="Display" SnapsToDevicePixels="True" TextTrimming="None"
HorizontalAlignment="Center" x:Name="LabText" VerticalAlignment="Center"
RenderTransformOrigin="0.5,0.5"
Foreground="{Binding Parent.BorderBrush, RelativeSource={RelativeSource Self}}" FontSize="13"
IsHitTestVisible="False">
<TextBlock.RenderTransform>
<ScaleTransform />
</TextBlock.RenderTransform>
</TextBlock>
</Border>
</Border>