2021-12-14 08:19:08 +00:00
|
|
|
<UserControl
|
|
|
|
|
x:Class="Flow.Launcher.Plugin.Shell.CMDSetting"
|
|
|
|
|
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"
|
|
|
|
|
d:DesignHeight="300"
|
|
|
|
|
d:DesignWidth="300"
|
|
|
|
|
Loaded="CMDSetting_OnLoaded"
|
|
|
|
|
mc:Ignorable="d">
|
2021-12-17 02:59:32 +00:00
|
|
|
<Grid Margin="60,10,10,20" VerticalAlignment="Top">
|
2020-05-03 05:57:14 +00:00
|
|
|
<Grid.RowDefinitions>
|
2021-12-14 08:19:08 +00:00
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition />
|
2023-11-11 11:36:09 +00:00
|
|
|
<RowDefinition />
|
2020-05-03 05:57:14 +00:00
|
|
|
</Grid.RowDefinitions>
|
2021-12-14 08:19:08 +00:00
|
|
|
<CheckBox
|
|
|
|
|
x:Name="ReplaceWinR"
|
|
|
|
|
Grid.Row="0"
|
2021-12-17 02:59:32 +00:00
|
|
|
Margin="10,10,5,5"
|
2021-12-14 08:19:08 +00:00
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
Content="{DynamicResource flowlauncher_plugin_cmd_relace_winr}" />
|
2023-11-01 16:35:00 +00:00
|
|
|
<CheckBox
|
|
|
|
|
x:Name="CloseShellAfterPress"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Margin="10,5,5,5"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
Content="{DynamicResource flowlauncher_plugin_cmd_close_cmd_after_press}" />
|
2021-12-14 08:19:08 +00:00
|
|
|
<CheckBox
|
|
|
|
|
x:Name="LeaveShellOpen"
|
2023-11-11 11:36:09 +00:00
|
|
|
Grid.Row="2"
|
2021-12-17 02:59:32 +00:00
|
|
|
Margin="10,5,5,5"
|
2021-12-14 08:19:08 +00:00
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
Content="{DynamicResource flowlauncher_plugin_cmd_leave_cmd_open}" />
|
|
|
|
|
<CheckBox
|
|
|
|
|
x:Name="AlwaysRunAsAdministrator"
|
2023-11-11 11:36:09 +00:00
|
|
|
Grid.Row="3"
|
2021-12-17 02:59:32 +00:00
|
|
|
Margin="10,5,5,5"
|
2021-12-14 08:19:08 +00:00
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
Content="{DynamicResource flowlauncher_plugin_cmd_always_run_as_administrator}" />
|
|
|
|
|
<ComboBox
|
|
|
|
|
x:Name="ShellComboBox"
|
2023-11-11 11:36:09 +00:00
|
|
|
Grid.Row="4"
|
2021-12-17 02:59:32 +00:00
|
|
|
Margin="10,5,5,5"
|
2021-12-14 08:19:08 +00:00
|
|
|
HorizontalAlignment="Left">
|
2020-05-03 05:57:14 +00:00
|
|
|
<ComboBoxItem>CMD</ComboBoxItem>
|
|
|
|
|
<ComboBoxItem>PowerShell</ComboBoxItem>
|
2023-06-12 13:18:23 +00:00
|
|
|
<ComboBoxItem>Pwsh</ComboBoxItem>
|
2020-05-03 05:57:14 +00:00
|
|
|
<ComboBoxItem>RunCommand</ComboBoxItem>
|
|
|
|
|
</ComboBox>
|
2023-11-11 11:36:09 +00:00
|
|
|
<StackPanel Grid.Row="5" Orientation="Horizontal">
|
2021-12-14 08:19:08 +00:00
|
|
|
<CheckBox
|
|
|
|
|
x:Name="ShowOnlyMostUsedCMDs"
|
2021-12-17 02:59:32 +00:00
|
|
|
Margin="10,5,5,5"
|
2021-12-14 08:19:08 +00:00
|
|
|
Content="{DynamicResource flowlauncher_plugin_cmd_history}" />
|
|
|
|
|
<ComboBox
|
|
|
|
|
x:Name="ShowOnlyMostUsedCMDsNumber"
|
2021-12-17 02:59:32 +00:00
|
|
|
Margin="10,5,5,5"
|
2021-12-14 08:19:08 +00:00
|
|
|
HorizontalAlignment="Left" />
|
|
|
|
|
</StackPanel>
|
2020-05-03 05:57:14 +00:00
|
|
|
</Grid>
|
2014-07-04 07:34:31 +00:00
|
|
|
</UserControl>
|