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>
/// 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>
public static string Copyright {
get {
@@ -286,7 +286,7 @@ namespace ImageResizer.Properties {
}
/// <summary>
/// Looks up a localized string similar to _Select a size..
/// Looks up a localized string similar to _Select a size.
/// </summary>
public static string Input_Content {
get {

View File

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

View File

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

View File

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