mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.5 KiB
113 lines
2.5 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Window |
|
x:Class="ICSharpCode.ILSpy.Debugger.UI.ExecuteProcessWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
Title="Select process to debug..." |
|
WindowStartupLocation="CenterOwner" |
|
WindowState="Normal" |
|
WindowStyle="ToolWindow" |
|
ShowInTaskbar="False" |
|
Height="250" |
|
Width="596"> |
|
<Grid |
|
Height="217"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition |
|
Height="1.4*" /> |
|
<RowDefinition |
|
Height="0.2*" /> |
|
</Grid.RowDefinitions> |
|
<Label |
|
Content="Executable" |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Left" |
|
VerticalAlignment="Top" |
|
Margin="19.5,28.5,0,0" |
|
Width="92" |
|
Height="25" /> |
|
<TextBox |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Right" |
|
VerticalAlignment="Top" |
|
Margin="0,28.5,84.5,0" |
|
Width="368" |
|
Height="25" |
|
Name="pathTextBox" /> |
|
<Button |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Left" |
|
VerticalAlignment="Top" |
|
Margin="502.5,28.5,0,0" |
|
Width="25" |
|
Height="25" |
|
Content="..." |
|
Name="pathButton" |
|
Click="pathButton_Click" /> |
|
<TextBox |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Left" |
|
VerticalAlignment="Top" |
|
Margin="133.5,81,0,0" |
|
Width="368" |
|
Height="25" |
|
Name="argumentsTextBox" /> |
|
<Label |
|
Content="Arguments" |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Left" |
|
VerticalAlignment="Top" |
|
Margin="19.5,81,0,0" |
|
Width="92" |
|
Height="31" /> |
|
<Button |
|
Content="..." |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Left" |
|
Width="25" |
|
Click="workingDirectoryButton_Click" |
|
Height="25" |
|
VerticalAlignment="Bottom" |
|
Margin="502.5,0,0,30.875" |
|
Name="workingDirectoryButton" /> |
|
<TextBox |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Left" |
|
VerticalAlignment="Top" |
|
Margin="133.5,134,0,0" |
|
Width="368" |
|
Height="25" |
|
Name="workingDirectoryTextBox" /> |
|
<Label |
|
Content="Working directory" |
|
Grid.Column="0" |
|
Grid.Row="0" |
|
HorizontalAlignment="Left" |
|
VerticalAlignment="Top" |
|
Margin="19.5,134,0,0" |
|
Width="113" |
|
Height="31" /> |
|
<DockPanel |
|
Grid.Row="1" |
|
LastChildFill="False"> |
|
<Button |
|
DockPanel.Dock="Left" |
|
HorizontalAlignment="Center" |
|
x:Name="ExecuteButton" |
|
Click="ExecuteButton_Click" |
|
Content="Execute" |
|
Width="100" /> |
|
<Button |
|
DockPanel.Dock="Right" |
|
x:Name="CancelButton" |
|
Content="Cancel" |
|
Click="CancelButton_Click" |
|
Width="100" /> |
|
</DockPanel> |
|
</Grid> |
|
</Window> |