mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
76 lines
4.5 KiB
Plaintext
76 lines
4.5 KiB
Plaintext
|
<Window x:Class="DS4WinWPF.DS4Forms.About"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:local="clr-namespace:DS4WinWPF"
|
||
|
mc:Ignorable="d"
|
||
|
Title="Hotkeys/About" Height="450" Width="800">
|
||
|
<DockPanel>
|
||
|
<Label x:Name="headerLb" Content="DS4Windows - Ryochan7 Build (Version " DockPanel.Dock="Top" HorizontalAlignment="Center" />
|
||
|
<TextBlock DockPanel.Dock="Top" HorizontalAlignment="Center">
|
||
|
<Hyperlink x:Name="changeLogLink" Click="ChangeLogLink_Click">Changelog</Hyperlink>
|
||
|
</TextBlock>
|
||
|
<TabControl>
|
||
|
<TabItem Header="Hotkeys">
|
||
|
<TextBlock TextWrapping="Wrap" xml:space="preserve">Hide DS4 Controller: Hides the DS4's regular input (Dinput) from other programs, check if you are getting double input in games or R2 pauses games
|
||
|
Click left side of touchpad: Left Touch
|
||
|
Click right side of touchpad: Right Touch
|
||
|
Click touchpad with 2 fingers: Multitouch
|
||
|
Click upper part of touchpad: Upper Touch
|
||
|
PS + Options or hold PS for 10 secs: Disconnect Controller (Only on Bluetooth)
|
||
|
Touch Touchpad + PS: Turn off touchpad movement (clicking still works)
|
||
|
Pad click on lower right: Right click (Best used when right side is used as a mouse button)
|
||
|
Two fingers up/down on touchpad*: Scroll Up/Down
|
||
|
Tap then hold touchpad*: Left mouse drag
|
||
|
2 finger touchpad swipe left or right: Cycle through profiles
|
||
|
Shift Modifer: Hold an action to use another set of controls
|
||
|
When mapping keyboard and mouse:
|
||
|
Toggle: The key will remain in a "held down" state until pressed again
|
||
|
Macro: Assign multiple keys to one input
|
||
|
Scan Code: Keys are interpreted differently. May be needed for certain games
|
||
|
*If enabled</TextBlock>
|
||
|
</TabItem>
|
||
|
<TabItem Header="Credits">
|
||
|
<DockPanel>
|
||
|
<StackPanel DockPanel.Dock="Top" Margin="10,0">
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<TextBlock><Hyperlink x:Name="siteLink" Click="SiteLink_Click">Site</Hyperlink></TextBlock>
|
||
|
<TextBlock Margin="20,0,0,0"><Hyperlink x:Name="sourceLink" Click="SourceLink_Click">Source</Hyperlink></TextBlock>
|
||
|
</StackPanel>
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<TextBlock><Hyperlink x:Name="jays2KingsLink" Click="Jays2KingsLink_Click">Jays2Kings</Hyperlink></TextBlock>
|
||
|
<TextBlock Margin="20,0,0,0"><Hyperlink x:Name="inhexSTERLink" Click="InhexSTERLink_Click">InhexSTER (Starter of DS4Tool)</Hyperlink></TextBlock>
|
||
|
</StackPanel>
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<TextBlock><Hyperlink x:Name="electrobrainsLink" Click="ElectrobrainsLink_Click">electrobrains (Branched off of)</Hyperlink></TextBlock>
|
||
|
</StackPanel>
|
||
|
<Label Content="Translators:" Margin="0,20,0,0" />
|
||
|
</StackPanel>
|
||
|
<TextBox DockPanel.Dock="Bottom" VerticalScrollBarVisibility="Auto" Margin="10,0,10,10">
|
||
|
|
||
|
</TextBox>
|
||
|
</DockPanel>
|
||
|
</TabItem>
|
||
|
<TabItem Header="Tip">
|
||
|
<StackPanel>
|
||
|
<TextBox Background="Transparent" BorderThickness="0" IsReadOnly="True" TextWrapping="Wrap"
|
||
|
IsUndoEnabled="False" xml:space="preserve">Bitcoin: 1DnMJwjdd7JRfHJap2mmTmADYm38SzR2z9
|
||
|
Litecoin: D9fhbXp9bCHEhuS8vX1BmVu6t7Y2nVNUCK
|
||
|
Dogecoin: La5mniW7SFMH2RhqDgUty3RwkBSYbjbnJ6
|
||
|
Monero: 49RvRMiMewaeez1Y2auxHmfMaAUYfhUpBem4ohzRJd9b5acPcxzh1icjnhZfjnYd1S7NQ57reQ7cP1swGre3rpfzUgJhEB7</TextBox>
|
||
|
<TextBlock Margin="0,10,0,0">
|
||
|
<Hyperlink x:Name="paypalLink" Click="PaypalLink_Click">Tip via Paypal</Hyperlink>
|
||
|
</TextBlock>
|
||
|
<TextBlock>
|
||
|
<Hyperlink x:Name="patreonLink" Click="PatreonLink_Click">Patreon</Hyperlink>
|
||
|
</TextBlock>
|
||
|
<TextBlock>
|
||
|
<Hyperlink x:Name="subscribeStartLink" Click="SubscribeStartLink_Click">SubscribeStar</Hyperlink>
|
||
|
</TextBlock>
|
||
|
</StackPanel>
|
||
|
</TabItem>
|
||
|
</TabControl>
|
||
|
</DockPanel>
|
||
|
</Window>
|