mirror of
https://github.com/yck1509/ConfuserEx
synced 2026-06-08 18:29:44 +00:00
ea37a419fd
Finish Project Tab
49 lines
2.8 KiB
XML
49 lines
2.8 KiB
XML
<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="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Content="Probe Paths :" Margin="5" VerticalAlignment="Center" />
|
|
<ListBox Grid.Row="1" 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="1" 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="0" Grid.Column="2" Content="Plugins :" Margin="5" VerticalAlignment="Center" />
|
|
<ListBox Grid.Row="1" 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="1" 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> |