Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / PithosStyles.xaml @ 20e9a378

History | View | Annotate | Download (845 Bytes)

1
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
3

    
4
    <Style x:Key="ButtonStyle" TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
5
        <Setter Property="Margin" Value="5"/>
6
        <Setter Property="Height" Value="25"/>
7
        <Setter Property="Width" Value="75" />
8
        <Setter Property="Padding" Value="3"/>
9
    </Style>
10
    
11
    <Style TargetType="Window" >
12
        <Setter Property="Background" Value="{StaticResource {x:Static SystemColors.ControlBrushKey}}"/>
13
    </Style>
14
    
15
    <Style x:Key="MediumButton" TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
16
        <Setter Property="Width" Value="75"/>
17
        <Setter Property="Height" Value="25"/>
18
    </Style>
19
</ResourceDictionary>