1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<Style x:Key="AccueilButtonStyle1" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid>
<Rectangle Fill="#D7212121" />
<TextBlock Foreground="White" FontFamily="Tahoma" FontWeight="Bold" FontSize="14" TextWrapping="Wrap" Text="{TemplateBinding Content}" Margin="5,5,5,5"/>
<Image Source="Images/engrenage64.png" Height="64" Width="64" Margin="0,30,0,0" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Cursor" Value="Hand" />
</Trigger>
</Style.Triggers>
</Style> |
Partager