-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHelp.cs
117 lines (110 loc) · 4.34 KB
/
Help.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Decompiled with JetBrains decompiler
// Type: JeutieControl.Help
// Assembly: JeutiesRepackControl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 2E5953BA-597D-45EC-BE8D-6CBCB16A2C42
// Assembly location: C:\Users\hands\Desktop\FOX3.2控制器.exe
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace JeutieControl
{
public class Help : Form
{
private IContainer components;
private RichTextBox richTextBox1;
private TextBox textBox1;
private TextBox textBox2;
private RichTextBox richTextBox2;
private Button button1;
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
this.components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
ComponentResourceManager resources = new ComponentResourceManager(typeof (Help));
this.richTextBox1 = new RichTextBox();
this.textBox1 = new TextBox();
this.textBox2 = new TextBox();
this.richTextBox2 = new RichTextBox();
this.button1 = new Button();
this.SuspendLayout();
this.richTextBox1.BackColor = SystemColors.Control;
this.richTextBox1.BorderStyle = BorderStyle.None;
this.richTextBox1.Location = new Point(12, 47);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.Size = new Size(527, 180);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.Text = resources.GetString("richTextBox1.Text");
this.textBox1.BackColor = SystemColors.Control;
this.textBox1.BorderStyle = BorderStyle.None;
this.textBox1.Font = new Font("Microsoft Sans Serif", 11.25f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);
this.textBox1.Location = new Point(12, 12);
this.textBox1.Margin = new Padding(3, 3, 3, 5);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.Size = new Size(443, 27);
this.textBox1.TabIndex = 1;
this.textBox1.Text = "How to use this program.";
this.textBox2.BackColor = SystemColors.Control;
this.textBox2.BorderStyle = BorderStyle.None;
this.textBox2.Font = new Font("Microsoft Sans Serif", 11.25f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);
this.textBox2.ForeColor = Color.Firebrick;
this.textBox2.Location = new Point(12, 233);
this.textBox2.Margin = new Padding(3, 3, 3, 5);
this.textBox2.Multiline = true;
this.textBox2.Name = "textBox2";
this.textBox2.ReadOnly = true;
this.textBox2.Size = new Size(443, 27);
this.textBox2.TabIndex = 3;
this.textBox2.Text = "Important!";
this.richTextBox2.BackColor = SystemColors.Control;
this.richTextBox2.BorderStyle = BorderStyle.None;
this.richTextBox2.ForeColor = Color.Firebrick;
this.richTextBox2.Location = new Point(12, 268);
this.richTextBox2.Name = "richTextBox2";
this.richTextBox2.ReadOnly = true;
this.richTextBox2.Size = new Size(527, 113);
this.richTextBox2.TabIndex = 2;
this.richTextBox2.Text = resources.GetString("richTextBox2.Text");
this.button1.Location = new Point(161, 411);
this.button1.Name = "button1";
this.button1.Size = new Size(231, 32);
this.button1.TabIndex = 4;
this.button1.Text = "Close";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new EventHandler(this.button1_Click);
this.AutoScaleDimensions = new SizeF(6f, 13f);
this.AutoScaleMode = AutoScaleMode.Font;
this.ClientSize = new Size(551, 455);
this.Controls.Add((Control) this.button1);
this.Controls.Add((Control) this.textBox2);
this.Controls.Add((Control) this.richTextBox2);
this.Controls.Add((Control) this.textBox1);
this.Controls.Add((Control) this.richTextBox1);
this.FormBorderStyle = FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.Name = "Help";
this.Text = "Help";
this.Load += new EventHandler(this.Help_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
public Help()
{
this.InitializeComponent();
}
private void Help_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
}
}