|
5 | 5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
6 | 6 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
7 | 7 | xmlns:program="clr-namespace:Flow.Launcher.Plugin.Program"
|
8 |
| - Height="450" |
9 |
| - d:DesignHeight="404.508" |
10 |
| - d:DesignWidth="600" |
| 8 | + Height="550" |
11 | 9 | DataContext="{Binding RelativeSource={RelativeSource Self}}"
|
12 | 10 | mc:Ignorable="d">
|
13 |
| - <Grid Margin="20"> |
| 11 | + <Grid Margin="0"> |
14 | 12 | <Grid.RowDefinitions>
|
15 |
| - <RowDefinition Height="165" /> |
| 13 | + <RowDefinition Height="240" /> |
16 | 14 | <RowDefinition Height="*" />
|
17 |
| - <RowDefinition Height="50" /> |
| 15 | + <RowDefinition Height="60" /> |
18 | 16 | </Grid.RowDefinitions>
|
19 | 17 | <StackPanel
|
20 | 18 | Grid.Row="0"
|
21 | 19 | HorizontalAlignment="Stretch"
|
22 |
| - Orientation="Horizontal"> |
| 20 | + Orientation="Vertical"> |
23 | 21 | <StackPanel Width="Auto" Orientation="Vertical">
|
24 | 22 | <CheckBox
|
25 | 23 | Name="StartMenuEnabled"
|
26 |
| - Margin="5" |
| 24 | + Margin="70,10,10,10" |
27 | 25 | Content="{DynamicResource flowlauncher_plugin_program_index_start}"
|
28 | 26 | IsChecked="{Binding EnableStartMenuSource}"
|
29 | 27 | ToolTip="{DynamicResource flowlauncher_plugin_program_index_start_tooltip}" />
|
| 28 | + <Separator /> |
30 | 29 | <CheckBox
|
31 | 30 | Name="RegistryEnabled"
|
32 |
| - Margin="5" |
| 31 | + Margin="70,10,10,10" |
33 | 32 | Content="{DynamicResource flowlauncher_plugin_program_index_registry}"
|
34 | 33 | IsChecked="{Binding EnableRegistrySource}"
|
35 | 34 | ToolTip="{DynamicResource flowlauncher_plugin_program_index_registry_tooltip}" />
|
| 35 | + <Separator /> |
36 | 36 | <CheckBox
|
37 | 37 | Name="HideLnkEnabled"
|
38 |
| - Margin="5" |
| 38 | + Margin="70,10,10,10" |
39 | 39 | Content="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath}"
|
40 | 40 | IsChecked="{Binding EnableHideLnkPath}"
|
41 | 41 | ToolTip="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath_tooltip}" />
|
| 42 | + <Separator /> |
42 | 43 | <CheckBox
|
43 | 44 | Name="DescriptionEnabled"
|
44 |
| - Margin="5" |
| 45 | + Margin="70,10,10,10" |
45 | 46 | Content="{DynamicResource flowlauncher_plugin_program_enable_description}"
|
46 | 47 | IsChecked="{Binding EnableDescription}"
|
47 | 48 | ToolTip="{DynamicResource flowlauncher_plugin_program_enable_description_tooltip}" />
|
| 49 | + <Separator /> |
48 | 50 | </StackPanel>
|
49 | 51 | <StackPanel
|
50 | 52 | Width="Auto"
|
51 |
| - HorizontalAlignment="Right" |
| 53 | + Margin="20,6,0,6" |
| 54 | + HorizontalAlignment="Left" |
52 | 55 | Orientation="Horizontal">
|
53 | 56 | <Button
|
54 | 57 | x:Name="btnLoadAllProgramSource"
|
55 | 58 | Width="100"
|
56 |
| - Height="31" |
57 | 59 | Margin="10"
|
58 | 60 | HorizontalAlignment="Right"
|
59 | 61 | Click="btnLoadAllProgramSource_OnClick"
|
60 | 62 | Content="{DynamicResource flowlauncher_plugin_program_all_programs}" />
|
61 | 63 | <Button
|
62 | 64 | x:Name="btnProgramSuffixes"
|
63 | 65 | Width="100"
|
64 |
| - Height="31" |
65 | 66 | Margin="10"
|
66 | 67 | HorizontalAlignment="Right"
|
67 | 68 | Click="BtnProgramSuffixes_OnClick"
|
68 | 69 | Content="{DynamicResource flowlauncher_plugin_program_suffixes}" />
|
69 | 70 | <Button
|
70 | 71 | x:Name="btnReindex"
|
71 | 72 | Width="100"
|
72 |
| - Height="31" |
73 | 73 | Margin="10"
|
74 | 74 | HorizontalAlignment="Right"
|
75 | 75 | Click="btnReindex_Click"
|
|
79 | 79 | <ListView
|
80 | 80 | x:Name="programSourceView"
|
81 | 81 | Grid.Row="1"
|
82 |
| - Margin="0,13,0,10" |
| 82 | + Margin="20,10,20,0" |
83 | 83 | AllowDrop="True"
|
84 | 84 | BorderBrush="DarkGray"
|
85 | 85 | BorderThickness="1"
|
|
127 | 127 | <DockPanel
|
128 | 128 | Grid.Row="2"
|
129 | 129 | Grid.RowSpan="1"
|
130 |
| - Margin="0,0,0,0"> |
| 130 | + Margin="0,0,20,10"> |
131 | 131 | <StackPanel
|
132 | 132 | x:Name="indexingPanel"
|
133 | 133 | HorizontalAlignment="Left"
|
|
0 commit comments