2016-06-24 05:53:30 +08:00
|
|
|
<UserControl x:Class="Wox.Plugin.Shell.CMDSetting"
|
2014-07-04 15:34:31 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Loaded="CMDSetting_OnLoaded"
|
|
|
|
d:DesignHeight="300" d:DesignWidth="300">
|
|
|
|
<Border BorderBrush="Gray" Margin="10" BorderThickness="1">
|
|
|
|
<Grid Margin="10" VerticalAlignment="Top" >
|
|
|
|
<Grid.RowDefinitions>
|
2016-05-19 16:04:31 +08:00
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
2014-07-04 15:34:31 +08:00
|
|
|
</Grid.RowDefinitions>
|
2016-05-19 16:04:31 +08:00
|
|
|
<CheckBox Grid.Row="0" x:Name="ReplaceWinR" Content="{DynamicResource wox_plugin_cmd_relace_winr}" Margin="10" HorizontalAlignment="Left"/>
|
|
|
|
<CheckBox Grid.Row="1" x:Name="LeaveShellOpen" Content="{DynamicResource wox_plugin_cmd_leave_cmd_open}" Margin="10" HorizontalAlignment="Left"/>
|
|
|
|
<ComboBox Grid.Row="2" x:Name="ShellComboBox" Margin="10" HorizontalAlignment="Left" >
|
|
|
|
<ComboBoxItem>CMD</ComboBoxItem>
|
|
|
|
<ComboBoxItem>PowerShell</ComboBoxItem>
|
|
|
|
<ComboBoxItem>RunCommand</ComboBoxItem>
|
|
|
|
</ComboBox>
|
2014-07-04 15:34:31 +08:00
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</UserControl>
|