/Debugger/ILSpy.Debugger/UI/ExecuteProcessWindow.xaml

http://github.com/icsharpcode/ILSpy · XAML · 110 lines · 110 code · 0 blank · 0 comment · 0 complexity · 32b015dd6160bfdb001e1eec701ab728 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Window
  3. 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"
  4. Title="Select process to debug..."
  5. WindowStartupLocation="CenterOwner"
  6. WindowState="Normal"
  7. WindowStyle="ToolWindow"
  8. ShowInTaskbar="False"
  9. Height="171"
  10. Width="509">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition
  14. Height="1.4*" />
  15. <RowDefinition
  16. Height="Auto" />
  17. </Grid.RowDefinitions>
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition
  20. Width="125" />
  21. <ColumnDefinition
  22. Width="1*" />
  23. <ColumnDefinition
  24. Width="40" />
  25. </Grid.ColumnDefinitions>
  26. <Label
  27. Content="Executable"
  28. Grid.Column="0"
  29. Grid.Row="0"
  30. HorizontalAlignment="Left"
  31. VerticalAlignment="Top"
  32. Margin="19.5,15.5,0,0" />
  33. <TextBox
  34. Name="pathTextBox"
  35. Grid.Column="1"
  36. Grid.Row="0"
  37. HorizontalAlignment="Stretch"
  38. VerticalAlignment="Top"
  39. Margin="5,15.5,0,0" />
  40. <Button
  41. Content="..."
  42. MinWidth="25"
  43. Name="pathButton"
  44. Click="pathButton_Click"
  45. Grid.Column="2"
  46. Grid.Row="0"
  47. HorizontalAlignment="Left"
  48. VerticalAlignment="Top"
  49. Margin="5,15.5,0,0" />
  50. <Label
  51. Content="Arguments"
  52. Grid.Column="0"
  53. Grid.Row="0"
  54. HorizontalAlignment="Left"
  55. VerticalAlignment="Top"
  56. Margin="19.5,46.46,0,0" />
  57. <TextBox
  58. Name="argumentsTextBox"
  59. Grid.Column="1"
  60. Grid.Row="0"
  61. HorizontalAlignment="Stretch"
  62. VerticalAlignment="Top"
  63. Margin="5,46.46,0,0" />
  64. <Label
  65. Content="Working directory"
  66. Grid.Column="0"
  67. Grid.Row="0"
  68. HorizontalAlignment="Left"
  69. VerticalAlignment="Top"
  70. Margin="19.5,77.42,0,0" />
  71. <TextBox
  72. Name="workingDirectoryTextBox"
  73. Grid.Column="1"
  74. Grid.Row="0"
  75. HorizontalAlignment="Stretch"
  76. VerticalAlignment="Top"
  77. Margin="5,77.42,0,0" />
  78. <Button
  79. Content="..."
  80. MinWidth="25"
  81. Click="workingDirectoryButton_Click"
  82. Name="workingDirectoryButton"
  83. Grid.Column="2"
  84. Grid.Row="0"
  85. HorizontalAlignment="Left"
  86. VerticalAlignment="Top"
  87. Margin="5,77.42,0,0" />
  88. <StackPanel
  89. Margin="4"
  90. Orientation="Horizontal"
  91. HorizontalAlignment="Right"
  92. Grid.Row="1"
  93. Grid.ColumnSpan="3">
  94. <Button
  95. Margin="0,0,4,0"
  96. DockPanel.Dock="Left"
  97. HorizontalAlignment="Center"
  98. x:Name="ExecuteButton"
  99. IsDefault="True"
  100. Click="ExecuteButton_Click"
  101. Content="Execute" />
  102. <Button
  103. DockPanel.Dock="Right"
  104. IsCancel="True"
  105. x:Name="CancelButton"
  106. Content="Cancel"
  107. Click="CancelButton_Click" />
  108. </StackPanel>
  109. </Grid>
  110. </Window>