- First Update

This commit is contained in:
2022-03-07 14:35:38 +09:00
parent 1ab1cfd4ea
commit f53695b228
48 changed files with 17003 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
namespace Mitria_Minecraft_Launcher
{
partial class ReportView
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReportView));
this.button_Close = new System.Windows.Forms.Button();
this.richTextBox_Report = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// button_Close
//
this.button_Close.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button_Close.Location = new System.Drawing.Point(670, 510);
this.button_Close.Name = "button_Close";
this.button_Close.Size = new System.Drawing.Size(120, 40);
this.button_Close.TabIndex = 1;
this.button_Close.Text = "Close";
this.button_Close.UseVisualStyleBackColor = true;
this.button_Close.Click += new System.EventHandler(this.button_Close_Click);
//
// richTextBox_Report
//
this.richTextBox_Report.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextBox_Report.Location = new System.Drawing.Point(10, 10);
this.richTextBox_Report.Margin = new System.Windows.Forms.Padding(0);
this.richTextBox_Report.Name = "richTextBox_Report";
this.richTextBox_Report.ReadOnly = true;
this.richTextBox_Report.Size = new System.Drawing.Size(780, 490);
this.richTextBox_Report.TabIndex = 2;
this.richTextBox_Report.TabStop = false;
this.richTextBox_Report.Text = "";
//
// ReportView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(804, 561);
this.Controls.Add(this.richTextBox_Report);
this.Controls.Add(this.button_Close);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ReportView";
this.Text = "Report View";
this.Load += new System.EventHandler(this.ReportView_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button_Close;
private System.Windows.Forms.RichTextBox richTextBox_Report;
}
}