|
10 | 10 | mc:Ignorable="d">
|
11 | 11 | <Grid Margin="0">
|
12 | 12 | <Grid.RowDefinitions>
|
| 13 | + <RowDefinition Height="Auto" /> |
13 | 14 | <RowDefinition Height="Auto" />
|
14 | 15 | <RowDefinition Height="*" />
|
15 | 16 | <RowDefinition Height="60" />
|
16 | 17 | </Grid.RowDefinitions>
|
17 |
| - <StackPanel |
18 |
| - Grid.Row="0" |
| 18 | + <DockPanel |
| 19 | + Margin="70,10,0,8" |
19 | 20 | HorizontalAlignment="Stretch"
|
20 |
| - Orientation="Vertical"> |
21 |
| - <WrapPanel Width="Auto" Margin="70,8,10,0"> |
22 |
| - <CheckBox |
23 |
| - Name="HideLnkEnabled" |
24 |
| - Margin="0,0,30,8" |
25 |
| - Content="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath}" |
26 |
| - IsChecked="{Binding HideAppsPath}" |
27 |
| - ToolTip="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath_tooltip}" /> |
28 |
| - <CheckBox |
29 |
| - Name="DescriptionEnabled" |
30 |
| - Margin="0,0,30,8" |
31 |
| - Content="{DynamicResource flowlauncher_plugin_program_enable_description}" |
32 |
| - IsChecked="{Binding EnableDescription}" |
33 |
| - ToolTip="{DynamicResource flowlauncher_plugin_program_enable_description_tooltip}" /> |
34 |
| - |
| 21 | + LastChildFill="True"> |
| 22 | + <TextBlock |
| 23 | + MinWidth="120" |
| 24 | + Margin="0,5,10,0" |
| 25 | + Text="{DynamicResource flowlauncher_plugin_program_index_source}" /> |
| 26 | + <WrapPanel |
| 27 | + Width="Auto" |
| 28 | + Margin="0,0,14,0" |
| 29 | + HorizontalAlignment="Right" |
| 30 | + DockPanel.Dock="Right"> |
35 | 31 | <CheckBox
|
36 | 32 | Name="StartMenuEnabled"
|
37 |
| - Margin="0,0,30,8" |
| 33 | + Margin="12,0,12,0" |
38 | 34 | Content="{DynamicResource flowlauncher_plugin_program_index_start}"
|
39 | 35 | IsChecked="{Binding EnableStartMenuSource}"
|
40 | 36 | ToolTip="{DynamicResource flowlauncher_plugin_program_index_start_tooltip}" />
|
41 | 37 | <CheckBox
|
42 | 38 | Name="RegistryEnabled"
|
43 |
| - Margin="0,0,30,8" |
| 39 | + Margin="12,0,12,0" |
44 | 40 | Content="{DynamicResource flowlauncher_plugin_program_index_registry}"
|
45 | 41 | IsChecked="{Binding EnableRegistrySource}"
|
46 | 42 | ToolTip="{DynamicResource flowlauncher_plugin_program_index_registry_tooltip}" />
|
47 | 43 |
|
48 | 44 | <CheckBox
|
49 | 45 | Name="PATHEnabled"
|
50 |
| - Margin="0,0,30,8" |
| 46 | + Margin="12,0,12,0" |
51 | 47 | Content="{DynamicResource flowlauncher_plugin_program_index_PATH}"
|
52 | 48 | IsChecked="{Binding EnablePATHSource}"
|
53 | 49 | ToolTip="{DynamicResource flowlauncher_plugin_program_index_PATH_tooltip}" />
|
54 |
| - |
55 | 50 | </WrapPanel>
|
| 51 | + </DockPanel> |
| 52 | + |
| 53 | + <StackPanel |
| 54 | + Grid.Row="1" |
| 55 | + HorizontalAlignment="Stretch" |
| 56 | + Orientation="Vertical"> |
| 57 | + <Separator |
| 58 | + Height="1" |
| 59 | + BorderBrush="{DynamicResource Color03B}" |
| 60 | + BorderThickness="1" /> |
| 61 | + <DockPanel |
| 62 | + Margin="70,10,0,8" |
| 63 | + HorizontalAlignment="Stretch" |
| 64 | + LastChildFill="True"> |
| 65 | + <TextBlock |
| 66 | + MinWidth="120" |
| 67 | + Margin="0,5,10,0" |
| 68 | + Text="{DynamicResource flowlauncher_plugin_program_index_option}" /> |
| 69 | + <WrapPanel |
| 70 | + Width="Auto" |
| 71 | + Margin="0,0,14,0" |
| 72 | + HorizontalAlignment="Right" |
| 73 | + DockPanel.Dock="Right"> |
| 74 | + <CheckBox |
| 75 | + Name="HideLnkEnabled" |
| 76 | + Margin="12,0,12,0" |
| 77 | + Content="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath}" |
| 78 | + IsChecked="{Binding HideAppsPath}" |
| 79 | + ToolTip="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath_tooltip}" /> |
| 80 | + <CheckBox |
| 81 | + Name="DescriptionEnabled" |
| 82 | + Margin="12,0,12,0" |
| 83 | + Content="{DynamicResource flowlauncher_plugin_program_enable_description}" |
| 84 | + IsChecked="{Binding EnableDescription}" |
| 85 | + ToolTip="{DynamicResource flowlauncher_plugin_program_enable_description_tooltip}" /> |
| 86 | + </WrapPanel> |
| 87 | + </DockPanel> |
56 | 88 | <Separator
|
57 | 89 | Height="1"
|
58 | 90 | BorderBrush="{DynamicResource Color03B}"
|
59 | 91 | BorderThickness="1" />
|
60 | 92 | <StackPanel
|
61 | 93 | Width="Auto"
|
62 |
| - Margin="10,6,0,0" |
| 94 | + Margin="60,6,0,0" |
63 | 95 | HorizontalAlignment="Left"
|
64 | 96 | Orientation="Horizontal">
|
65 | 97 | <Button
|
|
105 | 137 | </StackPanel>
|
106 | 138 | <ListView
|
107 | 139 | x:Name="programSourceView"
|
108 |
| - Grid.Row="1" |
109 |
| - Margin="20,0,20,0" |
| 140 | + Grid.Row="2" |
| 141 | + Margin="70,0,20,0" |
110 | 142 | AllowDrop="True"
|
111 | 143 | BorderBrush="DarkGray"
|
112 | 144 | BorderThickness="1"
|
|
145 | 177 | </ListView.View>
|
146 | 178 | </ListView>
|
147 | 179 | <DockPanel
|
148 |
| - Grid.Row="2" |
| 180 | + Grid.Row="3" |
149 | 181 | Grid.RowSpan="1"
|
150 | 182 | Margin="0,0,20,10">
|
151 | 183 | <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
|
|
0 commit comments