mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 09:19:18 +01:00
Added link to HTML5 Gamepad Test
This commit is contained in:
parent
6f53361607
commit
64a0c81173
@ -312,6 +312,10 @@
|
||||
Style="{StaticResource NoBGHoverBtn}" Click="ControlPanelBtn_Click" >
|
||||
<TextBlock Text="{lex:Loc ControlPanel}" TextDecorations="Underline" Foreground="#FF3881D8" Cursor="Hand" />
|
||||
</Button>
|
||||
<Button x:Name="html5GameBtn" BorderThickness="0" Margin="0,0,0,4" Background="{x:Null}" BorderBrush="{x:Null}"
|
||||
Style="{StaticResource NoBGHoverBtn}" Click="Html5GameBtn_Click" >
|
||||
<TextBlock Text="{lex:Loc GamepadTest}" TextDecorations="Underline" Foreground="#FF3881D8" Cursor="Hand" />
|
||||
</Button>
|
||||
<Button x:Name="driverSetupBtn" BorderThickness="0" Margin="0,0,0,4" Background="{x:Null}" BorderBrush="{x:Null}"
|
||||
Style="{StaticResource NoBGHoverBtn}" Click="DriverSetupBtn_Click">
|
||||
<TextBlock Text="{lex:Loc DriverSetup}" TextDecorations="Underline" Foreground="#FF3881D8" Cursor="Hand" />
|
||||
|
@ -1342,5 +1342,10 @@ Suspend support not enabled.", true);
|
||||
ShowProfileEditor(4, entity);
|
||||
}
|
||||
}
|
||||
|
||||
private void Html5GameBtn_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
Process.Start("https://html5gamepad.com/");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
9
DS4Windows/Translations/Strings.Designer.cs
generated
9
DS4Windows/Translations/Strings.Designer.cs
generated
@ -348,6 +348,15 @@ namespace DS4WinWPF.Translations {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Gamepad Test.
|
||||
/// </summary>
|
||||
public static string GamepadTest {
|
||||
get {
|
||||
return ResourceManager.GetString("GamepadTest", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Gyro.
|
||||
/// </summary>
|
||||
|
@ -327,4 +327,7 @@
|
||||
<data name="AutoProfTitleTip" xml:space="preserve">
|
||||
<value>Window title. ^ABC = Match at the beginning of string (^) | ABC$ = Match at the end of string ($) | *ABC =Contains a string (*)</value>
|
||||
</data>
|
||||
<data name="GamepadTest" xml:space="preserve">
|
||||
<value>Gamepad Test</value>
|
||||
</data>
|
||||
</root>
|
Loading…
Reference in New Issue
Block a user