| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <Application x:Class="Muchinfo.MTPClient.Update.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Application.Resources>
- <ImageSource x:Key="DialogCloseImg">Images/prompt_close.png</ImageSource>
- <ImageSource x:Key="DialogCloseImg_P">Images/prompt_close_d.png</ImageSource>
- <ImageSource x:Key="WindowIconImageSource">Update.ico</ImageSource>
- <Style x:Key="CloseButtonStyle" TargetType="{x:Type Button}">
- <Setter Property="BorderThickness" Value="0" />
- <Setter Property="Height" Value="24" />
- <Setter Property="Width" Value="24" />
- <Setter Property="HorizontalContentAlignment" Value="Center" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type Button}">
- <Border x:Name="ContentContainer" CornerRadius="2">
- <Image x:Name="image"
- Source="{DynamicResource DialogCloseImg}"
- Stretch="Uniform" />
- </Border>
- <ControlTemplate.Triggers>
- <Trigger Property="IsPressed" Value="true">
- <Setter TargetName="image" Property="Source" Value="{DynamicResource DialogCloseImg_P}" />
- <Setter TargetName="ContentContainer" Property="Background" Value="#FF474747" />
- </Trigger>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter TargetName="ContentContainer" Property="Background" Value="#FF474747" />
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </Application.Resources>
- </Application>
|