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.
56 lines
1.6 KiB
56 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Window |
|
x:Class="ILSpy.Debugger.UI.AttachToProcessWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
Title="Attach to process..." |
|
WindowStartupLocation="CenterOwner" |
|
WindowState="Normal" |
|
WindowStyle="ToolWindow" |
|
ShowInTaskbar="False" |
|
Height="300" |
|
Width="596"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition |
|
Height="1.8*" /> |
|
<RowDefinition |
|
Height="0.17*" /> |
|
</Grid.RowDefinitions> |
|
<ListView |
|
MouseDoubleClick="RunningProcesses_MouseDoubleClick" |
|
x:Name="RunningProcesses"> |
|
<ListView.View> |
|
<GridView> |
|
<GridView.Columns> |
|
<GridViewColumn Header="Process id" DisplayMemberBinding="{Binding ProcessId}"/> |
|
<GridViewColumn Header="Process" DisplayMemberBinding="{Binding ProcessName}"/> |
|
<GridViewColumn Header="Window title" DisplayMemberBinding="{Binding WindowTitle}"/> |
|
<GridViewColumn Header="Managed" DisplayMemberBinding="{Binding Managed}"/> |
|
</GridView.Columns> |
|
</GridView> |
|
</ListView.View> |
|
</ListView> |
|
<DockPanel |
|
Grid.Row="1"> |
|
<Button |
|
DockPanel.Dock="Left" |
|
HorizontalAlignment="Center" |
|
x:Name="RefreshButton" |
|
Click="RefreshButton_Click" |
|
Content="Refresh" |
|
Width="100" /> |
|
<Button |
|
DockPanel.Dock="Right" |
|
HorizontalAlignment="Center" |
|
x:Name="AttachButton" |
|
Click="AttachButton_Click" |
|
Content="Attach" |
|
Width="100" /> |
|
<Button |
|
DockPanel.Dock="Right" |
|
x:Name="CancelButton" |
|
Content="Cancel" |
|
Click="CancelButton_Click" |
|
Width="100" /> |
|
</DockPanel> |
|
</Grid> |
|
</Window> |