This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFrmChangeLog.Designer.cs
100 lines (94 loc) · 3.97 KB
/
FrmChangeLog.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
namespace MythicalLauncher
{
partial class FrmChangeLog
{
/// <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()
{
this.listBox1 = new System.Windows.Forms.ListBox();
this.webBrowser1 = new System.Windows.Forms.WebBrowser();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.btnLoad = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 15;
this.listBox1.Location = new System.Drawing.Point(14, 15);
this.listBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(231, 529);
this.listBox1.TabIndex = 0;
//
// webBrowser1
//
this.webBrowser1.Location = new System.Drawing.Point(253, 149);
this.webBrowser1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.webBrowser1.MinimumSize = new System.Drawing.Size(23, 25);
this.webBrowser1.Name = "webBrowser1";
this.webBrowser1.Size = new System.Drawing.Size(648, 396);
this.webBrowser1.TabIndex = 3;
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(253, 74);
this.richTextBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(647, 470);
this.richTextBox1.TabIndex = 4;
this.richTextBox1.Text = "";
this.richTextBox1.Visible = false;
//
// btnLoad
//
this.btnLoad.Location = new System.Drawing.Point(251, 15);
this.btnLoad.Name = "btnLoad";
this.btnLoad.Size = new System.Drawing.Size(649, 52);
this.btnLoad.TabIndex = 5;
this.btnLoad.Text = "Load";
this.btnLoad.UseVisualStyleBackColor = true;
this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
//
// ChangeLog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(914, 556);
this.Controls.Add(this.btnLoad);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.webBrowser1);
this.Controls.Add(this.listBox1);
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "ChangeLog";
this.Text = "ChangeLog";
this.Load += new System.EventHandler(this.ChangeLog_Load);
this.ResumeLayout(false);
}
private System.Windows.Forms.Button btnLoad;
#endregion
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.WebBrowser webBrowser1;
private System.Windows.Forms.RichTextBox richTextBox1;
}
}