|
12 | 12 | <ColumnDefinition Width="36px" /> |
13 | 13 | </Grid.ColumnDefinitions> |
14 | 14 | <Grid.RowDefinitions> |
| 15 | + <RowDefinition Height="36px" /> |
15 | 16 | <RowDefinition Height="36px" /> |
16 | 17 | <RowDefinition Height="*" /> |
17 | 18 | </Grid.RowDefinitions> |
18 | 19 |
|
19 | | - <Label Grid.Row="0" Grid.Column="0" Content="Probe Paths :" Margin="5" VerticalAlignment="Center" /> |
20 | | - <ListBox Grid.Row="1" Grid.Column="0" Margin="5" x:Name="ProbePaths" ItemsSource="{Binding ProbePaths}" |
| 20 | + <Grid Grid.Row="0" Grid.ColumnSpan="4"> |
| 21 | + <Grid.ColumnDefinitions> |
| 22 | + <ColumnDefinition Width="120px" /> |
| 23 | + <ColumnDefinition Width="*" /> |
| 24 | + <ColumnDefinition Width="36px" /> |
| 25 | + </Grid.ColumnDefinitions> |
| 26 | + <Label Grid.Column="0" Content="Input Symbol Map :" Margin="5" HorizontalContentAlignment="Right" |
| 27 | + VerticalContentAlignment="Center" /> |
| 28 | + <TextBox Grid.Column="1" Margin="5" VerticalContentAlignment="Center" |
| 29 | + Text="{Binding InputSymbolMap, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" |
| 30 | + local:Skin.EmptyPrompt="Reuse a previous symbols.map for consistent re-obfuscation" |
| 31 | + local:FileDragDrop.Command="{x:Static local:FileDragDrop.FileCmd}" /> |
| 32 | + <Button Grid.Column="2" Margin="5" VerticalAlignment="Center" Height="26" x:Name="ChooseSymbolMap"> |
| 33 | + <TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="10px" |
| 34 | + TextOptions.TextRenderingMode="GrayScale" /> |
| 35 | + </Button> |
| 36 | + </Grid> |
| 37 | + |
| 38 | + <Label Grid.Row="1" Grid.Column="0" Content="Probe Paths :" Margin="5" VerticalAlignment="Center" /> |
| 39 | + <ListBox Grid.Row="2" Grid.Column="0" Margin="5" x:Name="ProbePaths" ItemsSource="{Binding ProbePaths}" |
21 | 40 | local:FileDragDrop.Command="{x:Static local:FileDragDrop.DirectoryCmd}" |
22 | 41 | ScrollViewer.CanContentScroll="False" /> |
23 | | - <StackPanel Grid.Row="1" Grid.Column="1"> |
| 42 | + <StackPanel Grid.Row="2" Grid.Column="1"> |
24 | 43 | <Button Height="26" Margin="5" DockPanel.Dock="Top" x:Name="AddProbe"> |
25 | 44 | <TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="12px" |
26 | 45 | TextOptions.TextRenderingMode="GrayScale" /> |
|
31 | 50 | </Button> |
32 | 51 | </StackPanel> |
33 | 52 |
|
34 | | - <Label Grid.Row="0" Grid.Column="2" Content="Plugins :" Margin="5" VerticalAlignment="Center" /> |
35 | | - <ListBox Grid.Row="1" Grid.Column="2" Margin="5" x:Name="PluginPaths" ItemsSource="{Binding Plugins}" |
| 53 | + <Label Grid.Row="1" Grid.Column="2" Content="Plugins :" Margin="5" VerticalAlignment="Center" /> |
| 54 | + <ListBox Grid.Row="2" Grid.Column="2" Margin="5" x:Name="PluginPaths" ItemsSource="{Binding Plugins}" |
36 | 55 | local:FileDragDrop.Command="{x:Static local:FileDragDrop.FileCmd}" |
37 | 56 | ScrollViewer.CanContentScroll="False" /> |
38 | | - <StackPanel Grid.Row="1" Grid.Column="3"> |
| 57 | + <StackPanel Grid.Row="2" Grid.Column="3"> |
39 | 58 | <Button Height="26" Margin="5" DockPanel.Dock="Top" x:Name="AddPlugin"> |
40 | 59 | <TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="12px" |
41 | 60 | TextOptions.TextRenderingMode="GrayScale" /> |
|
0 commit comments