#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
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.
 
 
 
 
 
 

25 lines
1.1 KiB

<gui:OptionPanel x:Class="ICSharpCode.SourceAnalysis.AnalysisIdeOptionsPanel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:core="http://icsharpcode.net/sharpdevelop/core"
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<GroupBox Header="StyleCop">
<StackPanel>
<TextBlock Margin="3,5,3,20" x:Name="status"
HorizontalAlignment="Center" TextWrapping="Wrap"
Text="(showing current StyleCop path)"></TextBlock>
<Button Content="Find StyleCop path"
HorizontalAlignment="Center"
Click="FindStyleCopPath_Click"
Style="{x:Static core:GlobalStyles.ButtonStyle}"></Button>
<Button Margin="0,15,0,0" IsEnabled="{Binding EnableModifyStyleCopSettings}"
Content="Modify Master StyleCop Settings"
HorizontalAlignment="Center"
Click="ModifyStyleCopSettings_Click"
Style="{x:Static core:GlobalStyles.ButtonStyle}"></Button>
</StackPanel>
</GroupBox>
</gui:OptionPanel>