2020-07-18 14:12:11 +00:00
|
|
|
<Window x:Class="Flow.Launcher.Plugin.Explorer.Views.ActionKeywordSetting"
|
|
|
|
|
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:Flow.Launcher.Plugin.Explorer.Views"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
|
WindowStartupLocation="CenterScreen"
|
2021-06-02 01:10:24 +00:00
|
|
|
DataContext="{Binding RelativeSource={RelativeSource Self}}"
|
2020-07-18 14:12:11 +00:00
|
|
|
Title="Action Keyword Setting" Height="200" Width="500">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="180" />
|
|
|
|
|
<ColumnDefinition />
|
2021-05-30 09:28:18 +00:00
|
|
|
<ColumnDefinition />
|
2020-07-18 14:12:11 +00:00
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Margin="20 10 10 10" FontSize="14" Grid.Row="0" Grid.Column="0" VerticalAlignment="Center"
|
2021-06-05 08:44:16 +00:00
|
|
|
HorizontalAlignment="Left" Text="{DynamicResource plugin_explorer_actionkeyword_current}" />
|
2021-06-02 01:10:24 +00:00
|
|
|
<TextBox Name="TxtCurrentActionKeyword"
|
2020-07-18 14:12:11 +00:00
|
|
|
Margin="10" Grid.Row="0" Width="105" Grid.Column="1"
|
|
|
|
|
VerticalAlignment="Center"
|
2021-06-02 01:10:24 +00:00
|
|
|
HorizontalAlignment="Left"
|
2021-06-06 03:01:50 +00:00
|
|
|
Text="{Binding ActionKeyword}"
|
|
|
|
|
PreviewKeyDown="TxtCurrentActionKeyword_OnKeyDown"/>
|
2021-06-05 08:44:16 +00:00
|
|
|
<CheckBox Name="ChkActionKeywordEnabled" ToolTip="{DynamicResource plugin_explorer_actionkeyword_enabled_tooltip}"
|
|
|
|
|
Margin="10" Grid.Row="0" Grid.Column="2" Content="{DynamicResource plugin_explorer_actionkeyword_enabled}"
|
2021-06-02 01:10:24 +00:00
|
|
|
Width="auto"
|
2021-06-06 03:01:50 +00:00
|
|
|
VerticalAlignment="Center" IsChecked="{Binding Enabled}"
|
2021-06-02 01:10:24 +00:00
|
|
|
Visibility="{Binding Visible}"/>
|
2021-06-06 03:01:50 +00:00
|
|
|
<Button Name="DownButton"
|
|
|
|
|
Click="OnDoneButtonClick" Grid.Row="1" Grid.Column="2"
|
2021-06-05 08:44:16 +00:00
|
|
|
Margin="10 0 10 0" Width="80" Height="35"
|
|
|
|
|
Content="{DynamicResource plugin_explorer_actionkeyword_done}" />
|
2020-07-18 14:12:11 +00:00
|
|
|
</Grid>
|
2021-06-02 01:10:24 +00:00
|
|
|
</Window>
|