Add error report (however it has no sending feature at this commit)

This commit is contained in:
Yeechan Lu
2014-03-27 12:58:36 +08:00
parent 2ec71c9942
commit 9bc4b74888
6 changed files with 364 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
<Window x:Class="Wox.Helper.ErrorReporting.WPFErrorReportingDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="ErrorReportingDialog" WindowStartupLocation="CenterScreen">
<DockPanel>
<TextBlock Margin="10" TextWrapping="Wrap" DockPanel.Dock="Top" Text="Wox has occured an error that can't be handled. "/>
<TextBox x:Name="tbErrorReport" IsReadOnly="True" IsUndoEnabled="False" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" />
</DockPanel>
</Window>