mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-20 10:57:45 +08:00
46 lines
1.8 KiB
XML
46 lines
1.8 KiB
XML
<UserControl
|
|
x:Class="MaaWpfGui.HotKeySettingsUserControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:c="clr-namespace:CalcBinding;assembly=CalcBinding"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:dd="urn:gong-wpf-dragdrop"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
xmlns:local="clr-namespace:MaaWpfGui"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:s="https://github.com/canton7/Stylet"
|
|
xmlns:vm="clr-namespace:MaaWpfGui"
|
|
d:DataContext="{d:DesignInstance {x:Type vm:SettingsViewModel}}"
|
|
mc:Ignorable="d">
|
|
<StackPanel
|
|
Margin="10"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<StackPanel
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal">
|
|
<TextBlock
|
|
Margin="10"
|
|
Block.TextAlignment="Center"
|
|
Text="{DynamicResource HotKeyShowGui}" />
|
|
<local:HotKeyEditorUserControl
|
|
Margin="10"
|
|
HorizontalAlignment="Right"
|
|
HotKey="{Binding HotKeyShowGui}" />
|
|
</StackPanel>
|
|
<StackPanel
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal">
|
|
<TextBlock
|
|
Margin="10"
|
|
Block.TextAlignment="Center"
|
|
Text="{DynamicResource HotKeyLinkStart}" />
|
|
<local:HotKeyEditorUserControl
|
|
Margin="10"
|
|
HorizontalAlignment="Right"
|
|
HotKey="{Binding HotKeyLinkStart}" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</UserControl> |