aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Styles
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2022-06-07 13:11:29 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2022-06-07 13:11:29 +0300
commit02af692fee47d53c7884f497fcebfbbb8bbf8f10 (patch)
treeefc93f361fe8c66c943c203f9291877003dfe045 /Software/Visual_Studio/Tango.Touch/Styles
parent09fe40f5878e91129381b417da0769b3be97d105 (diff)
downloadTango-02af692fee47d53c7884f497fcebfbbb8bbf8f10.tar.gz
Tango-02af692fee47d53c7884f497fcebfbbb8bbf8f10.zip
PPC. Repeat window - GUI changes.
Related Work Items: #6663
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Styles')
-rw-r--r--Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml10
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml b/Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml
index 6b3ef4484..1fc25c0ec 100644
--- a/Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml
+++ b/Software/Visual_Studio/Tango.Touch/Styles/TouchNumericUpDownControl.xaml
@@ -77,16 +77,16 @@
</Style.Triggers>
</Style>
</StackPanel.Resources>
- <RepeatButton Background="Transparent" Height="23" Padding="2" Style="{StaticResource emptyButton}" Command="{Binding Path=DecrementCommand,RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=controls:TouchNumericUpDownConrol}, Mode=TwoWay}" VerticalAlignment="Center">
- <controls:TouchIcon Icon="Minus" Width="16" Height="3" VerticalAlignment="Center"/>
+ <RepeatButton Background="Transparent" Height="40" Padding="2" Style="{StaticResource emptyButton}" Command="{Binding Path=DecrementCommand,RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=controls:TouchNumericUpDownConrol}, Mode=TwoWay}" VerticalAlignment="Center">
+ <controls:TouchIcon Icon="Minus" Width="22" Height="Auto" VerticalAlignment="Center"/>
</RepeatButton>
- <controls:TouchNumericTextBox x:Name="Number_PART" Margin="16 4 0 0" FontSize="20" HorizontalContentAlignment="Center" VerticalAlignment="Center" BorderBrush="{TemplateBinding BorderBrush}" VerticalContentAlignment="Center" UpdateBindingOnlyWhenFocused="True"
+ <controls:TouchNumericTextBox x:Name="Number_PART" Margin="50 4 0 0" FontSize="{StaticResource TangoMessageBoxMessageFontSize}" HorizontalContentAlignment="Center" VerticalAlignment="Center" BorderBrush="{TemplateBinding BorderBrush}" VerticalContentAlignment="Center" UpdateBindingOnlyWhenFocused="True"
Value="{Binding Value,RelativeSource={RelativeSource AncestorType=controls:TouchNumericUpDownConrol}, Mode=TwoWay}" Minimum="{Binding MinValue,RelativeSource={RelativeSource AncestorType=controls:TouchNumericUpDownConrol}}" Maximum="{Binding MaxValue,RelativeSource={RelativeSource AncestorType=controls:TouchNumericUpDownConrol}, Mode=TwoWay}"/>
- <RepeatButton Background="Transparent" Height="23" Margin="16 0 0 0" Padding="4" Style="{StaticResource emptyButton}" Command="{Binding Path=IncrementCommand,RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=controls:TouchNumericUpDownConrol}, Mode=TwoWay}" VerticalAlignment="Center">
- <controls:TouchIcon Icon="Plus" Width="16" VerticalAlignment="Center"/>
+ <RepeatButton Background="Transparent" Height="40" Margin="50 0 0 0" Padding="2" Style="{StaticResource emptyButton}" Command="{Binding Path=IncrementCommand,RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=controls:TouchNumericUpDownConrol}, Mode=TwoWay}" VerticalAlignment="Center">
+ <controls:TouchIcon Icon="Plus" Width="22" VerticalAlignment="Center"/>
</RepeatButton>
</StackPanel>