- First Update
This commit is contained in:
32
Mitria_Minecraft_Launcher/ReportView.cs
Normal file
32
Mitria_Minecraft_Launcher/ReportView.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user