PowerToys/Wox/CustomQueryHotkeySetting.xaml

39 lines
2.0 KiB
Plaintext
Raw Normal View History

2015-01-02 23:07:49 +08:00
<Window x:Class="Wox.CustomQueryHotkeySetting"
2014-02-22 15:52:20 +08:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wox="clr-namespace:Wox"
Icon="Images\app.png"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
Title="Custom Plugin Hotkey" Height="200" Width="674.766">
<Grid>
<Grid.RowDefinitions>
2016-03-26 12:46:39 +08:00
<RowDefinition />
<RowDefinition />
<RowDefinition />
2014-02-22 15:52:20 +08:00
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
2016-03-26 12:46:39 +08:00
<ColumnDefinition Width="150" />
<ColumnDefinition />
2014-02-22 15:52:20 +08:00
</Grid.ColumnDefinitions>
2016-03-26 12:46:39 +08:00
<TextBlock Margin="10" FontSize="14" Grid.Row="0" Grid.Column="0" VerticalAlignment="Center"
HorizontalAlignment="Right" Text="{DynamicResource hotkey}" />
<wox:HotkeyControl x:Name="ctlHotkey" Margin="10" Grid.Column="1" />
2014-02-22 15:52:20 +08:00
2016-03-26 12:46:39 +08:00
<TextBlock Margin="10" FontSize="14" Grid.Row="1" Grid.Column="0" VerticalAlignment="Center"
HorizontalAlignment="Right" Text="{DynamicResource actionKeyword}" />
<StackPanel Grid.Row="1" Orientation="Horizontal" Grid.Column="1">
<TextBox x:Name="tbAction" Margin="10" Width="400" VerticalAlignment="Center" HorizontalAlignment="Left" />
<Button x:Name="btnTestActionKeyword" Padding="10 5 10 5" Height="30" Click="BtnTestActionKeyword_OnClick"
Content="{DynamicResource preview}" />
2014-02-22 15:52:20 +08:00
</StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Grid.Row="2" Grid.Column="1">
2016-03-26 12:46:39 +08:00
<Button x:Name="btnCancel" Click="BtnCancel_OnClick" Margin="10 0 10 0" Width="80" Height="25"
Content="{DynamicResource cancel}" />
<Button x:Name="btnAdd" Margin="10 0 10 0" Width="80" Height="25" Click="btnAdd_OnClick">
<TextBlock x:Name="lblAdd" Text="{DynamicResource done}" />
2014-02-22 15:52:20 +08:00
</Button>
</StackPanel>
</Grid>
2016-03-26 12:46:39 +08:00
</Window>