33 lines
724 B
C#
33 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mitria_Minecraft_Launcher
|
|
{
|
|
public partial class ReportView : Form
|
|
{
|
|
private string report;
|
|
public ReportView(string reportData)
|
|
{
|
|
report = reportData;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button_Close_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
private void ReportView_Load(object sender, EventArgs e)
|
|
{
|
|
richTextBox_Report.Text = report;
|
|
}
|
|
}
|
|
}
|