62 lines
2.9 KiB
XML
62 lines
2.9 KiB
XML
<Application x:Class="MinesweeperGui.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:MinesweeperGui"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
|
|
<Style TargetType="Button">
|
|
<!--Set to true to not get any properties from the themes.-->
|
|
<Setter Property="OverridesDefaultStyle" Value="True"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="Button">
|
|
<Border x:Name="border" Background="Red" BorderBrush="Black" BorderThickness="3" CornerRadius="5" >
|
|
<Grid Height="40" Width="120">
|
|
<Image x:Name="buttonImage" Source="resources/images/facingDown.png" Stretch="Fill" />
|
|
<ContentPresenter Margin="{TemplateBinding Padding}" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Border>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="true">
|
|
<Setter TargetName="border" Property="BorderBrush" Value="Blue" />
|
|
</Trigger>
|
|
<Trigger Property="IsPressed" Value="true">
|
|
<Setter TargetName="buttonImage" Property="Source" Value="resources/images/0.png" />
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
|
|
<Style x:Key="RaisedButton" TargetType="Button">
|
|
<Setter Property="Background">
|
|
<Setter.Value>
|
|
<ImageBrush ImageSource="resources/images/facingDown.png"/>
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Style.Triggers>
|
|
<!--
|
|
<Trigger Property="IsPressed" Value="True">
|
|
<Setter Property="Background">
|
|
<Setter.Value>
|
|
<ImageBrush ImageSource="resources/images/0.png"/>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Trigger>
|
|
-->
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Setter Property="Foreground" Value="Red" />
|
|
<Setter Property="Background">
|
|
<Setter.Value>
|
|
<ImageBrush ImageSource="resources/images/0.png"/>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</Application.Resources>
|
|
</Application>
|