Keyboard accesibility fix

This commit is contained in:
Niels Laute
2020-11-07 21:36:59 +01:00
parent edbbc69f4f
commit da36371448
4 changed files with 6 additions and 4 deletions

View File

@@ -259,7 +259,7 @@ namespace ImageResizer.Properties {
} }
/// <summary> /// <summary>
/// Looks up a localized string similar to © 2019 Brice Lambson. All rights reserved.. /// Looks up a localized string similar to © 2020 Brice Lambson. All rights reserved..
/// </summary> /// </summary>
public static string Copyright { public static string Copyright {
get { get {
@@ -286,7 +286,7 @@ namespace ImageResizer.Properties {
} }
/// <summary> /// <summary>
/// Looks up a localized string similar to _Select a size.. /// Looks up a localized string similar to _Select a size.
/// </summary> /// </summary>
public static string Input_Content { public static string Input_Content {
get { get {

View File

@@ -184,7 +184,7 @@
<value>Cancel</value> <value>Cancel</value>
</data> </data>
<data name="Copyright" xml:space="preserve"> <data name="Copyright" xml:space="preserve">
<value>© 2019 Brice Lambson. All rights reserved.</value> <value>© 2020 Brice Lambson. All rights reserved.</value>
</data> </data>
<data name="ImageResizer" xml:space="preserve"> <data name="ImageResizer" xml:space="preserve">
<value>Image Resizer</value> <value>Image Resizer</value>
@@ -193,7 +193,7 @@
<value>(auto)</value> <value>(auto)</value>
</data> </data>
<data name="Input_Content" xml:space="preserve"> <data name="Input_Content" xml:space="preserve">
<value>_Select a size.</value> <value>_Select a size</value>
</data> </data>
<data name="Input_Custom" xml:space="preserve"> <data name="Input_Custom" xml:space="preserve">
<value>Custom</value> <value>Custom</value>

View File

@@ -248,6 +248,7 @@
Target="{Binding ElementName=_fileNameTextBox}"/> Target="{Binding ElementName=_fileNameTextBox}"/>
<TextBox Grid.Column="1" <TextBox Grid.Column="1"
Height="23" Height="23"
TabIndex="1"
TextWrapping="Wrap" TextWrapping="Wrap"
Name="_fileNameTextBox" Name="_fileNameTextBox"
Text="{Binding Settings.FileName}"/> Text="{Binding Settings.FileName}"/>

View File

@@ -31,6 +31,7 @@
Padding="12,12"> Padding="12,12">
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal"> <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
<Button MinWidth="76" <Button MinWidth="76"
Style="{StaticResource AccentButtonStyle}"
Command="{Binding StopCommand}" Command="{Binding StopCommand}"
Content="{x:Static p:Resources.Progress_Stop}" Content="{x:Static p:Resources.Progress_Stop}"
IsCancel="True"/> IsCancel="True"/>