mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-29 20:34:04 +02:00
23 lines
671 B
C#
23 lines
671 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
using TweetDuck.Controls;
|
|
using TweetDuck.Management.Analytics;
|
|
|
|
namespace TweetDuck.Dialogs.Settings{
|
|
sealed partial class DialogSettingsAnalytics : Form{
|
|
public DialogSettingsAnalytics(AnalyticsReport report){
|
|
InitializeComponent();
|
|
|
|
Text = Program.BrandName + " Options - Analytics Report";
|
|
|
|
textBoxReport.EnableMultilineShortcuts();
|
|
textBoxReport.Text = report.ToString().TrimEnd();
|
|
textBoxReport.Select(0, 0);
|
|
}
|
|
|
|
private void btnClose_Click(object sender, EventArgs e){
|
|
Close();
|
|
}
|
|
}
|
|
}
|