diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.xaml')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.xaml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.xaml b/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.xaml index 4517a9e09..ac4640da7 100644 --- a/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.xaml +++ b/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.xaml @@ -458,6 +458,8 @@ <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="Auto"/> + <ColumnDefinition Width="Auto"/> + <ColumnDefinition Width="Auto"/> </Grid.ColumnDefinitions> <RepeatButton Style="{StaticResource bottomButtonDots}" Command="{Binding RelativeSource={RelativeSource AncestorType=local:TouchKeyboard},Path=SpecialCharactersCommand}"> @@ -490,7 +492,7 @@ <TextBlock Text="{Binding CurrentKeyboardDefinition.LanguageCode}"></TextBlock> </RepeatButton> - <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter="/" Grid.Column="2"> + <!--<RepeatButton Command="{Binding FreeTextCommand}" CommandParameter="/" Grid.Column="2"> <RepeatButton.Style> <Style TargetType="RepeatButton" BasedOn="{StaticResource bottomButton}"> <Setter Property="Visibility" Value="{Binding IsSpecialCharactersOn,Converter={StaticResource BooleanToVisibilityInverseConverter}}"></Setter> @@ -502,7 +504,7 @@ </Style> </RepeatButton.Style> <TextBlock Text="/"></TextBlock> - </RepeatButton> + </RepeatButton>--> <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter="@" Grid.Column="2"> <RepeatButton.Style> @@ -529,11 +531,19 @@ </DockPanel> </RepeatButton> - <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter="." Style="{StaticResource bottomButtonDots}" Grid.Column="4"> + <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter="'{LEFT}'" Style="{StaticResource normalButton}" Grid.Column="4"> + <controls:TouchIcon Icon="ChevronLeft" Height="18" Width="18" /> + </RepeatButton> + + <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter="'{RIGHT}'" Style="{StaticResource normalButton}" Grid.Column="5"> + <controls:TouchIcon Icon="ChevronRight" Height="18" Width="18" /> + </RepeatButton> + + <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter="." Style="{StaticResource bottomButtonDots}" Grid.Column="6"> <TextBlock Text="."></TextBlock> </RepeatButton> - <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter=".com" Grid.Column="5"> + <RepeatButton Command="{Binding FreeTextCommand}" CommandParameter=".com" Grid.Column="7"> <RepeatButton.Style> <Style TargetType="RepeatButton" BasedOn="{StaticResource bottomButtonDots}"> <Setter Property="Visibility" Value="Collapsed"></Setter> @@ -550,7 +560,7 @@ <TextBlock Text=".com"></TextBlock> </RepeatButton> - <RepeatButton Style="{StaticResource bottomButton}" Grid.Column="6" Command="{Binding ActionKeyCommand}"> + <RepeatButton Style="{StaticResource bottomButton}" Grid.Column="8" Command="{Binding ActionKeyCommand}"> <TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=local:TouchKeyboard},Path=ActionKeyText}"></TextBlock> </RepeatButton> </Grid> |
