|
|
|
@ -1,9 +1,12 @@
@@ -1,9 +1,12 @@
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<UserControl |
|
|
|
|
x:Class="ICSharpCode.SharpDevelop.Gui.OptionPanels.WebProjectOptionsPanel" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:core="http://icsharpcode.net/sharpdevelop/core" xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets" xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
|
> |
|
|
|
|
<GroupBox Margin="0, 0, 85, 0" |
|
|
|
|
Header="{core:Localize ICSharpCode.WepProjectOptionsPanel.Server}"> |
|
|
|
|
x:Class="ICSharpCode.SharpDevelop.Gui.OptionPanels.WebProjectOptionsPanel" |
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
|
xmlns:core="http://icsharpcode.net/sharpdevelop/core" |
|
|
|
|
xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets" |
|
|
|
|
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
|
Width="Auto" Height="Auto"> |
|
|
|
|
<widgets:StackPanelWithSpacing SpaceBetweenItems="3"> |
|
|
|
|
<!--IIS Express--> |
|
|
|
|
<widgets:StackPanelWithSpacing SpaceBetweenItems="3"> |
|
|
|
@ -21,7 +24,7 @@
@@ -21,7 +24,7 @@
|
|
|
|
|
<ColumnDefinition Width="Auto"/> |
|
|
|
|
<ColumnDefinition Width="Auto"/> |
|
|
|
|
</Grid.ColumnDefinitions> |
|
|
|
|
<TextBlock Text="{core:Localize ICSharpCode.WepProjectOptionsPanel.Port}"/> |
|
|
|
|
<TextBlock Text="{core:Localize ICSharpCode.WepProjectOptionsPanel.Port}" Margin="0,0,5,0"/> |
|
|
|
|
<TextBox Grid.Column="1" x:Name="PortTextBox" |
|
|
|
|
PreviewTextInput="PortTextBox_PreviewTextInput" Text="8080" |
|
|
|
|
KeyUp="PortTextBox_KeyUp" /> |
|
|
|
@ -44,7 +47,7 @@
@@ -44,7 +47,7 @@
|
|
|
|
|
<ColumnDefinition Width="Auto"/> |
|
|
|
|
</Grid.ColumnDefinitions> |
|
|
|
|
<TextBlock |
|
|
|
|
VerticalAlignment="Center" |
|
|
|
|
VerticalAlignment="Center" Margin="0,0,5,0" |
|
|
|
|
Grid.Row="1" |
|
|
|
|
TextWrapping="Wrap" |
|
|
|
|
Text="{core:Localize ICSharpCode.WepProjectOptionsPanel.ProjectUrl}" /> |
|
|
|
@ -66,16 +69,17 @@
@@ -66,16 +69,17 @@
|
|
|
|
|
<widgets:UniformGridWithSpacing Columns="2" SpaceBetweenColumns="10"> |
|
|
|
|
<Button |
|
|
|
|
IsEnabled="False" |
|
|
|
|
Margin="0,2,0,2" |
|
|
|
|
Style="{x:Static core:GlobalStyles.ButtonStyle}" |
|
|
|
|
Name="CreateVirtualDirectoryButton" |
|
|
|
|
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.CreateVirtualDir}" |
|
|
|
|
Click="CreateVirtualDirectory_Click" /> |
|
|
|
|
<Button |
|
|
|
|
Margin="0,2,2,2" |
|
|
|
|
Style="{x:Static core:GlobalStyles.ButtonStyle}" |
|
|
|
|
Name="ClearWebServerButton" |
|
|
|
|
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.DisableWebServerButton}" |
|
|
|
|
Click="ClearWebServerButton_Click" /> |
|
|
|
|
</widgets:UniformGridWithSpacing> |
|
|
|
|
</widgets:StackPanelWithSpacing> |
|
|
|
|
</GroupBox> |
|
|
|
|
</UserControl> |