forked from mkaring/ConfuserEx
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathProjectTabAdvancedView.xaml
More file actions
68 lines (65 loc) · 3.99 KB
/
Copy pathProjectTabAdvancedView.xaml
File metadata and controls
68 lines (65 loc) · 3.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Window x:Class="ConfuserEx.Views.ProjectTabAdvancedView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ConfuserEx"
Title="Advanced Settings..." Height="400" Width="600"
Style="{StaticResource DarkWindow}" ShowInTaskbar="False" ResizeMode="NoResize">
<Grid Margin="5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="36px" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="36px" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="36px" />
<RowDefinition Height="36px" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid Grid.Row="0" Grid.ColumnSpan="4">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="120px" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="36px" />
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Content="Input Symbol Map :" Margin="5" HorizontalContentAlignment="Right"
VerticalContentAlignment="Center" />
<TextBox Grid.Column="1" Margin="5" VerticalContentAlignment="Center"
Text="{Binding InputSymbolMap, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
local:Skin.EmptyPrompt="Reuse a previous symbols.map for consistent re-obfuscation"
local:FileDragDrop.Command="{x:Static local:FileDragDrop.FileCmd}" />
<Button Grid.Column="2" Margin="5" VerticalAlignment="Center" Height="26" x:Name="ChooseSymbolMap">
<TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="10px"
TextOptions.TextRenderingMode="GrayScale" />
</Button>
</Grid>
<Label Grid.Row="1" Grid.Column="0" Content="Probe Paths :" Margin="5" VerticalAlignment="Center" />
<ListBox Grid.Row="2" Grid.Column="0" Margin="5" x:Name="ProbePaths" ItemsSource="{Binding ProbePaths}"
local:FileDragDrop.Command="{x:Static local:FileDragDrop.DirectoryCmd}"
ScrollViewer.CanContentScroll="False" />
<StackPanel Grid.Row="2" Grid.Column="1">
<Button Height="26" Margin="5" DockPanel.Dock="Top" x:Name="AddProbe">
<TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="12px"
TextOptions.TextRenderingMode="GrayScale" />
</Button>
<Button Height="26" Margin="5" DockPanel.Dock="Top" x:Name="RemoveProbe">
<TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="12px"
TextOptions.TextRenderingMode="GrayScale" />
</Button>
</StackPanel>
<Label Grid.Row="1" Grid.Column="2" Content="Plugins :" Margin="5" VerticalAlignment="Center" />
<ListBox Grid.Row="2" Grid.Column="2" Margin="5" x:Name="PluginPaths" ItemsSource="{Binding Plugins}"
local:FileDragDrop.Command="{x:Static local:FileDragDrop.FileCmd}"
ScrollViewer.CanContentScroll="False" />
<StackPanel Grid.Row="2" Grid.Column="3">
<Button Height="26" Margin="5" DockPanel.Dock="Top" x:Name="AddPlugin">
<TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="12px"
TextOptions.TextRenderingMode="GrayScale" />
</Button>
<Button Height="26" Margin="5" DockPanel.Dock="Top" x:Name="RemovePlugin">
<TextBlock FontSize="14px" FontFamily="{DynamicResource FontAwesome}" Text="" Height="12px"
TextOptions.TextRenderingMode="GrayScale" />
</Button>
</StackPanel>
</Grid>
</Window>