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 @@ |
|||||||
<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"> |
<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> |
<StackPanel> |
||||||
<TextBlock TextWrapping="Wrap"> |
<TextBlock |
||||||
We need your help! To improve SharpDevelop in the future, we would like to know which features are used most.<LineBreak /> |
TextWrapping="Wrap" |
||||||
SharpDevelop can collect this information and upload it automatically. |
Text="{core:Localize AddIns.UsageDataCollector.Introduction}"/> |
||||||
</TextBlock> |
<RadioButton |
||||||
<RadioButton Name="acceptRadio">I would like to participate - collect and upload usage data</RadioButton> |
Name="acceptRadio" |
||||||
<RadioButton Name="declineRadio">I do not want to participate</RadioButton> |
Content="{core:Localize AddIns.UsageDataCollector.AcceptRadioButton}"/> |
||||||
<Button Name="showCollectedDataButton" Click="ShowCollectedDataButton_Click" Margin="4" HorizontalAlignment="Left"> |
<RadioButton |
||||||
Show collected data |
Name="declineRadio" |
||||||
</Button> |
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"> |
<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> |
</TextBlock> |
||||||
</StackPanel> |
</StackPanel> |
||||||
</gui:OptionPanel> |
</gui:OptionPanel> |
Loading…
Reference in new issue