minor text/formatting tweaks to config window

This commit is contained in:
Gered 2013-01-28 14:22:35 -05:00
parent 6bad645624
commit 3d348f5eb4

View file

@ -2,14 +2,14 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:properties="clr-namespace:AppleWirelessKeyboard.Properties" xmlns:properties="clr-namespace:AppleWirelessKeyboard.Properties"
Title="Configuration" Height="385" Width="300"> Title="Configuration" Height="385" Width="338">
<Window.Resources> <Window.Resources>
<properties:Settings x:Key="Settings"/> <properties:Settings x:Key="Settings"/>
</Window.Resources> </Window.Resources>
<Grid> <Grid>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"/> <ColumnDefinition Width="238*"/>
<ColumnDefinition/> <ColumnDefinition Width="78*" />
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition/> <RowDefinition/>
@ -17,13 +17,13 @@
<RowDefinition/> <RowDefinition/>
</Grid.RowDefinitions> </Grid.RowDefinitions>
<TextBlock Text="F keys are Mac special function keys by default:" Grid.Column="0" Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,0,6,0" Foreground="Gray" TextWrapping="Wrap"/> <TextBlock Text="F keys are Mac special function keys by default:" Grid.Column="0" Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="6,0" Foreground="Gray" TextWrapping="Wrap"/>
<CheckBox Name="fMode" Grid.Column="1" Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center" IsChecked="{Binding Source={StaticResource Settings}, Path=Default.FMode}"/> <CheckBox Name="fMode" Grid.Column="1" Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center" IsChecked="{Binding Source={StaticResource Settings}, Path=Default.FMode}"/>
<TextBlock Text="Wired Keyboard. If enabled, fixes Eject key handling on a wired keyboard so that it toggles the above option on/off when pressed." Grid.Column="0" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,0,6,0" Foreground="Gray" TextWrapping="Wrap"/> <TextBlock Text="Wired Keyboard. If enabled, fixes Eject key handling on a wired keyboard so that it toggles the above option on/off when pressed. This must be checked for the below option to work." Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="6,0" Foreground="Gray" TextWrapping="Wrap" Width="184" />
<CheckBox Name="wiredKeyboard" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center" IsChecked="{Binding Source={StaticResource Settings}, Path=Default.WiredKeyboard}"/> <CheckBox Name="wiredKeyboard" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center" IsChecked="{Binding Source={StaticResource Settings}, Path=Default.WiredKeyboard}"/>
<TextBlock Text="(Wired Keyboard only) Eject key emulates Fn key. If enabled allows holding Eject + function key to do the same as Fn + function key does on a wireless keyboard." Grid.Column="0" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,0,6,0" Foreground="Gray" TextWrapping="Wrap"/> <TextBlock Text="(Wired Keyboard only) Eject key emulates Fn key. If enabled, allows holding Eject + [function key] to do the same as Fn + [function key] does on a wireless keyboard." Grid.Column="0" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="6,0" Foreground="Gray" TextWrapping="Wrap"/>
<CheckBox Name="wiredHoldEjectForFn" Grid.Column="1" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Center" IsChecked="{Binding Source={StaticResource Settings}, Path=Default.WiredHoldEjectForFn}"/> <CheckBox Name="wiredHoldEjectForFn" Grid.Column="1" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Center" IsChecked="{Binding Source={StaticResource Settings}, Path=Default.WiredHoldEjectForFn}"/>
</Grid> </Grid>
</Window> </Window>