#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.
 
 
 
 
 
 

20 lines
1.2 KiB

<gui:OptionPanel x:Class="ICSharpCode.UsageDataCollector.OptionPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop" xmlns:core="http://icsharpcode.net/sharpdevelop/core" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:ICSharpCode.UsageDataCollector">
<StackPanel>
<TextBlock
TextWrapping="Wrap"
Text="{core:Localize AddIns.UsageDataCollector.Introduction}"/>
<RadioButton
Name="acceptRadio"
Content="{core:Localize AddIns.UsageDataCollector.AcceptRadioButton}"/>
<RadioButton
Name="declineRadio"
Content="{core:Localize AddIns.UsageDataCollector.DeclineRadioButton}"/>
<Button Name="showCollectedDataButton" Click="ShowCollectedDataButton_Click" Margin="4" HorizontalAlignment="Left" Content="{core:Localize AddIns.UsageDataCollector.ShowCollectedData}"/>
<TextBlock HorizontalAlignment="Left">
<Hyperlink
NavigateUri="{x:Static local:AnalyticsMonitor.PrivacyStatementUrl}">
<Run Text="{core:Localize AddIns.UsageDataCollector.PrivacyStatement}"/>
</Hyperlink>
</TextBlock>
</StackPanel>
</gui:OptionPanel>