Browse Source
Merge pull request #6830 from AvaloniaUI/maxkatz6-patch-1
Update NumericUpDown template MinWidth
pull/6868/head
Tako
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
src/Avalonia.Themes.Fluent/Controls/NumericUpDown.xaml
|
|
|
@ -38,6 +38,7 @@ |
|
|
|
BorderBrush="{TemplateBinding BorderBrush}" |
|
|
|
CornerRadius="{TemplateBinding CornerRadius}" |
|
|
|
Padding="0" |
|
|
|
MinWidth="{TemplateBinding MinWidth}" |
|
|
|
HorizontalContentAlignment="Stretch" |
|
|
|
VerticalContentAlignment="Stretch" |
|
|
|
AllowSpin="{TemplateBinding AllowSpin}" |
|
|
|
@ -49,6 +50,9 @@ |
|
|
|
BorderBrush="Transparent" |
|
|
|
Margin="-1" |
|
|
|
Padding="{TemplateBinding Padding}" |
|
|
|
MinWidth="{TemplateBinding MinWidth}" |
|
|
|
Foreground="{TemplateBinding Foreground}" |
|
|
|
FontSize="{TemplateBinding FontSize}" |
|
|
|
Watermark="{TemplateBinding Watermark}" |
|
|
|
IsReadOnly="{TemplateBinding IsReadOnly}" |
|
|
|
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}" |
|
|
|
|