Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5428 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61pull/1/head
7 changed files with 67 additions and 30 deletions
@ -1,16 +1,20 @@
@@ -1,16 +1,20 @@
|
||||
<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"> |
||||
We need your help! To improve SharpDevelop in the future, we would like to know which features are used most.<LineBreak /> |
||||
SharpDevelop can collect this information and upload it automatically. |
||||
</TextBlock> |
||||
<RadioButton Name="acceptRadio">I would like to participate - collect and upload usage data</RadioButton> |
||||
<RadioButton Name="declineRadio">I do not want to participate</RadioButton> |
||||
<Button Name="showCollectedDataButton" Click="ShowCollectedDataButton_Click" Margin="4" HorizontalAlignment="Left"> |
||||
Show collected data |
||||
</Button> |
||||
<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}">Privacy Statement</Hyperlink> |
||||
<Hyperlink |
||||
NavigateUri="{x:Static local:AnalyticsMonitor.PrivacyStatementUrl}"> |
||||
<Run Text="{core:Localize AddIns.UsageDataCollector.PrivacyStatement}"/> |
||||
</Hyperlink> |
||||
</TextBlock> |
||||
</StackPanel> |
||||
</gui:OptionPanel> |
Loading…
Reference in new issue