blob: 02a1b31638b4f2070ea522e86641109ebea61908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:keyboard="clr-namespace:Tango.Touch.Keyboard;assembly=Tango.Touch"
xmlns:touch="clr-namespace:Tango.Touch.Controls;assembly=Tango.Touch"
xmlns:local="clr-namespace:Tango.PPC.UI.Resources">
<Style TargetType="{x:Type keyboard:TouchKeyboard}" BasedOn="{StaticResource {x:Type keyboard:TouchKeyboard}}">
<Setter Property="FontSize" Value="{StaticResource TangoKeyboardFontSize}"></Setter>
<Setter Property="VectorMarkupSize" Value="25"></Setter>
<Setter Property="Margin" Value="5"></Setter>
</Style>
<Style TargetType="{x:Type touch:TouchButton}" BasedOn="{StaticResource {x:Type touch:TouchButton}}">
<Setter Property="FontSize" Value="{StaticResource TangoButtonFontSize}"></Setter>
</Style>
</ResourceDictionary>
|