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.
32 lines
1.0 KiB
32 lines
1.0 KiB
<gui:OptionPanel |
|
x:Class="ICSharpCode.MSTest.MSTestOptionsPanel" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:core="http://icsharpcode.net/sharpdevelop/core" |
|
xmlns:sd="clr-namespace:ICSharpCode.SharpDevelop" |
|
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop" |
|
xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:local="clr-namespace:ICSharpCode.SharpDevelop.Gui.OptionPanels"> |
|
<StackPanel> |
|
<GroupBox Header="MS Test"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="Auto"/> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="Auto"/> |
|
</Grid.ColumnDefinitions> |
|
|
|
<Label Content="Path:"/> |
|
<TextBox |
|
Grid.Column="1" |
|
Text="{Binding MSTestPath}"/> |
|
<Button |
|
Grid.Column="2" |
|
Content="..." |
|
Command="{Binding BrowseCommand}" |
|
Padding="4, 0" |
|
Margin="4,0"/> |
|
</Grid> |
|
</GroupBox> |
|
</StackPanel> |
|
</gui:OptionPanel> |