5 changed files with 77 additions and 65 deletions
@ -1,66 +1,63 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<UserControl |
<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" |
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" |
||||||
Margin="0, 0, 0, 10"> |
> |
||||||
<StackPanel |
<GroupBox Margin="0, 0, 86, 0" |
||||||
Orientation="Vertical"> |
Header="{core:Localize ICSharpCode.WepProjectOptionsPanel.Server}"> |
||||||
<GroupBox |
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
||||||
Header="{core:Localize ICSharpCode.WepProjectOptionsPanel.Server}"> |
<!--IIS Express--> |
||||||
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
||||||
<!--IIS Express--> |
<RadioButton |
||||||
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
IsChecked="False" |
||||||
<RadioButton |
GroupName="WebProject" |
||||||
IsChecked="False" |
x:Name="UseIISExpress" |
||||||
GroupName="WebProject" |
Click="UseIISExpress_Click" |
||||||
x:Name="UseIISExpress" |
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.UseIISExpress}" /> |
||||||
Click="UseIISExpress_Click" |
</widgets:StackPanelWithSpacing> |
||||||
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.UseIISExpress}" /> |
<!--IIS Local Server--> |
||||||
</widgets:StackPanelWithSpacing> |
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
||||||
<!--IIS Local Server--> |
<RadioButton |
||||||
<widgets:StackPanelWithSpacing SpaceBetweenItems="5"> |
IsChecked="False" |
||||||
<RadioButton |
GroupName="WebProject" |
||||||
IsChecked="False" |
x:Name="UseLocalIIS" |
||||||
GroupName="WebProject" |
Click="UseLocalIIS_Click" |
||||||
x:Name="UseLocalIIS" |
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.UseLocalIIS}" /> |
||||||
Click="UseLocalIIS_Click" |
<Grid Margin="10, 10" |
||||||
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.UseLocalIIS}" /> |
IsEnabled="False" |
||||||
<Grid Margin="10, 10" |
x:Name="LocalIISGroup" |
||||||
IsEnabled="False" |
VerticalAlignment="Top"> |
||||||
x:Name="LocalIISGroup" |
<Grid.ColumnDefinitions> |
||||||
VerticalAlignment="Top"> |
<ColumnDefinition Width="Auto"/> |
||||||
<Grid.ColumnDefinitions> |
<ColumnDefinition Width="Auto"/> |
||||||
<ColumnDefinition Width="Auto"/> |
<ColumnDefinition Width="Auto"/> |
||||||
<ColumnDefinition Width="Auto"/> |
</Grid.ColumnDefinitions> |
||||||
<ColumnDefinition Width="Auto"/> |
|
||||||
</Grid.ColumnDefinitions> |
|
||||||
<TextBlock |
|
||||||
VerticalAlignment="Center" |
|
||||||
Grid.Row="1" |
|
||||||
TextWrapping="Wrap" |
|
||||||
Text="{core:Localize ICSharpCode.WepProjectOptionsPanel.ProjectUrl}" /> |
|
||||||
<TextBox |
|
||||||
Grid.Row="1" |
|
||||||
Grid.Column="1" |
|
||||||
x:Name="ProjectUrl" |
|
||||||
TextChanged="ProjectUrl_TextChanged" |
|
||||||
MinWidth="250" /> |
|
||||||
<Button |
|
||||||
Grid.Row="1" |
|
||||||
Grid.Column="2" |
|
||||||
Style="{x:Static core:GlobalStyles.ButtonStyle}" |
|
||||||
Name="CreateVirtualDirectoryButton" |
|
||||||
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.CreateVirtualDir}" |
|
||||||
Click="CreateVirtualDirectory_Click" /> |
|
||||||
</Grid> |
|
||||||
<TextBlock |
<TextBlock |
||||||
Foreground="Red" |
VerticalAlignment="Center" |
||||||
TextDecorations="Underline" |
Grid.Row="1" |
||||||
FontSize="12" |
|
||||||
FontWeight="Bold" |
|
||||||
TextWrapping="Wrap" |
TextWrapping="Wrap" |
||||||
Name="StatusLabel" /> |
Text="{core:Localize ICSharpCode.WepProjectOptionsPanel.ProjectUrl}" /> |
||||||
</widgets:StackPanelWithSpacing> |
<TextBox |
||||||
|
Grid.Row="1" |
||||||
|
Grid.Column="1" |
||||||
|
x:Name="ProjectUrl" |
||||||
|
TextChanged="ProjectUrl_TextChanged" |
||||||
|
MinWidth="250" /> |
||||||
|
<Button |
||||||
|
Grid.Row="1" |
||||||
|
Grid.Column="2" |
||||||
|
Style="{x:Static core:GlobalStyles.ButtonStyle}" |
||||||
|
Name="CreateVirtualDirectoryButton" |
||||||
|
Content="{core:Localize ICSharpCode.WepProjectOptionsPanel.CreateVirtualDir}" |
||||||
|
Click="CreateVirtualDirectory_Click" /> |
||||||
|
</Grid> |
||||||
|
<TextBlock |
||||||
|
Foreground="Red" |
||||||
|
TextDecorations="Underline" |
||||||
|
FontSize="12" |
||||||
|
FontWeight="Bold" |
||||||
|
TextWrapping="Wrap" |
||||||
|
Name="StatusLabel" /> |
||||||
</widgets:StackPanelWithSpacing> |
</widgets:StackPanelWithSpacing> |
||||||
</GroupBox> |
</widgets:StackPanelWithSpacing> |
||||||
</StackPanel> |
</GroupBox> |
||||||
</UserControl> |
</UserControl> |
Loading…
Reference in new issue