-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathHelpForm.Designer.cs
More file actions
110 lines (104 loc) · 5.16 KB
/
Copy pathHelpForm.Designer.cs
File metadata and controls
110 lines (104 loc) · 5.16 KB
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
101
102
103
104
105
106
107
108
109
110
namespace C3Tools
{
partial class HelpForm
{
/// <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(HelpForm));
this.btnClose = new System.Windows.Forms.Button();
this.btnReadMe = new System.Windows.Forms.Button();
this.txtHelp = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.BackColor = System.Drawing.Color.WhiteSmoke;
this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnClose.Location = new System.Drawing.Point(464, 288);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(68, 24);
this.btnClose.TabIndex = 0;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = false;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnReadMe
//
this.btnReadMe.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnReadMe.BackColor = System.Drawing.Color.WhiteSmoke;
this.btnReadMe.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnReadMe.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnReadMe.Location = new System.Drawing.Point(12, 288);
this.btnReadMe.Name = "btnReadMe";
this.btnReadMe.Size = new System.Drawing.Size(115, 24);
this.btnReadMe.TabIndex = 1;
this.btnReadMe.Text = "Open READ ME File";
this.btnReadMe.UseVisualStyleBackColor = false;
this.btnReadMe.Visible = false;
this.btnReadMe.Click += new System.EventHandler(this.btnReadMe_Click);
//
// txtHelp
//
this.txtHelp.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.txtHelp.BackColor = System.Drawing.Color.White;
this.txtHelp.Location = new System.Drawing.Point(12, 12);
this.txtHelp.Multiline = true;
this.txtHelp.Name = "txtHelp";
this.txtHelp.ReadOnly = true;
this.txtHelp.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtHelp.Size = new System.Drawing.Size(520, 267);
this.txtHelp.TabIndex = 2;
this.txtHelp.DoubleClick += new System.EventHandler(this.txtHelp_DoubleClick);
this.txtHelp.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtHelp_KeyDown);
//
// HelpForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
this.ClientSize = new System.Drawing.Size(544, 321);
this.Controls.Add(this.txtHelp);
this.Controls.Add(this.btnReadMe);
this.Controls.Add(this.btnClose);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.MinimizeBox = false;
this.Name = "HelpForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Shown += new System.EventHandler(this.HelpForm_Shown);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HelpForm_KeyDown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnReadMe;
private System.Windows.Forms.TextBox txtHelp;
}
}