WinRT XAML工具包NumericUpDown模板

WinRT XAML Toolkit NumericUpDown Template

我正在Windows通用应用程序C中使用WinRT XAML工具包。我想更改加号(+)和减号(-)按钮之间的距离,并增大两个按钮的大小。

有一些模板可用于WPF,但不适用于通用应用程序。

这里是图像请建议我如何实现它?


模板在这里的工具箱中。

您可以通过更改这些按钮样式来添加Margin,从而获得所需的内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!-- DecrementButtonStyle -->
<Style
    x:Key="DecrementButtonStyle"
    BasedOn="{StaticResource NumericUpDownButtonStyle}"
    TargetType="RepeatButton">
    <Setter
        Property="Content"
        Value="&#x2796;" />
    <Setter
        Property="Margin"
        Value="5" />
</Style>

<!-- IncrementButtonStyle -->
<Style
    x:Key="IncrementButtonStyle"
    BasedOn="{StaticResource NumericUpDownButtonStyle}"
    TargetType="RepeatButton">
    <Setter
        Property="Content"
        Value="&#x2795;" />
    <Setter
        Property="Margin"
        Value="5" />
</Style>