Files
Mitria_Minecraft_Project/Mitria_Minecraft_Launcher/ReportView.cs
2022-03-07 14:35:38 +09:00

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;
}
}
}