This repository was archived by the owner on Oct 4, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAttachToDockerContainerDialog.xaml
63 lines (63 loc) · 2.2 KB
/
AttachToDockerContainerDialog.xaml
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
<platformui:DialogWindow
xmlns:platformui="clr-namespace:Microsoft.VisualStudio.PlatformUI;assembly=Microsoft.VisualStudio.Shell.15.0" x:Class="AttachToDockerContainer.AttachToDockerContainerDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
Height="165"
Width="320"
ResizeMode="NoResize"
Title="Attach to Docker container">
<Grid>
<Button
x:Name="AttachButton"
Click="AttachButton_Click"
Content="Attach"
HorizontalAlignment="Center"
Margin="0,100,0,0"
VerticalAlignment="Top"
Width="75"/>
<ComboBox
x:Name="ContainerComboBox"
HorizontalAlignment="Left"
Margin="100,14,0,0"
VerticalAlignment="Top"
Width="198"
IsEditable="True"
IsTextSearchEnabled="True"
IsSynchronizedWithCurrentItem="True"/>
<TextBox
x:Name="VsDbgPathTextBox"
HorizontalAlignment="Left"
Height="23"
Margin="100,41,0,0"
TextWrapping="Wrap"
VerticalAlignment="Top"
Width="198"/>
<ComboBox
x:Name="PidComboBox"
HorizontalAlignment="Left"
Margin="100,69,0,0"
VerticalAlignment="Top"
Width="198" />
<Label
Content="Container:"
HorizontalAlignment="Left"
Margin="5,10,0,0"
VerticalAlignment="Top"
Width="85"/>
<Label
Content="VSDBG path:"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="5,38,0,0"
Width="85"/>
<Label
Content="Process ID:"
HorizontalAlignment="Left"
Margin="5,65,0,0"
VerticalAlignment="Top"
Width="85"/>
</Grid>
</platformui:DialogWindow>