mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
75 lines
2.4 KiB
C#
75 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
using Wox.Core;
|
|
using Wox.Core.Exception;
|
|
using Wox.Core.i18n;
|
|
using Wox.Core.UI;
|
|
using Wox.Core.UserSettings;
|
|
using Wox.Core.Version;
|
|
using Wox.Infrastructure.Http;
|
|
|
|
namespace Wox.CrashReporter
|
|
{
|
|
internal partial class ReportWindow
|
|
{
|
|
private Exception exception;
|
|
|
|
public ReportWindow(Exception exception)
|
|
{
|
|
this.exception = exception;
|
|
InitializeComponent();
|
|
SetException(exception);
|
|
}
|
|
|
|
private void SetException(Exception exception)
|
|
{
|
|
tbSummary.AppendText(exception.Message);
|
|
tbVersion.Text = VersionManager.Instance.CurrentVersion.ToString();
|
|
tbDatetime.Text = DateTime.Now.ToString();
|
|
tbStackTrace.AppendText(exception.StackTrace);
|
|
tbSource.Text = exception.Source;
|
|
tbType.Text = exception.GetType().ToString();
|
|
}
|
|
|
|
private void btnSend_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
string sendingMsg = InternationalizationManager.Internationalization.GetTranslation("reportWindow_sending");
|
|
tbSendReport.Content = sendingMsg;
|
|
btnSend.IsEnabled = false;
|
|
ThreadPool.QueueUserWorkItem(o => SendReport());
|
|
}
|
|
|
|
private void SendReport()
|
|
{
|
|
string error = string.Format("{{\"data\":{0}}}", ExceptionFormatter.FormatExcpetion(exception));
|
|
string response = HttpRequest.Post(APIServer.ErrorReportURL, error, HttpProxy.Instance);
|
|
if (response.ToLower() == "ok")
|
|
{
|
|
MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("reportWindow_report_succeed"));
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("reportWindow_report_failed"));
|
|
}
|
|
Dispatcher.Invoke(new Action(Close));
|
|
}
|
|
|
|
private void btnCancel_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
}
|