-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathLstForm.Designer.cs
104 lines (98 loc) · 3.51 KB
/
LstForm.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
101
102
103
104
namespace Idmr.Yogeme
{
partial class LstForm
{
/// <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(LstForm));
this.cmdSave = new System.Windows.Forms.Button();
this.cboFile = new System.Windows.Forms.ComboBox();
this.txtLST = new System.Windows.Forms.TextBox();
this.lblEx = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// cmdSave
//
this.cmdSave.Location = new System.Drawing.Point(222, 22);
this.cmdSave.Name = "cmdSave";
this.cmdSave.Size = new System.Drawing.Size(65, 21);
this.cmdSave.TabIndex = 2;
this.cmdSave.Text = "&Save";
this.cmdSave.UseVisualStyleBackColor = true;
this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
//
// cboFile
//
this.cboFile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboFile.FormattingEnabled = true;
this.cboFile.Location = new System.Drawing.Point(15, 22);
this.cboFile.Name = "cboFile";
this.cboFile.Size = new System.Drawing.Size(191, 21);
this.cboFile.TabIndex = 0;
this.cboFile.SelectedIndexChanged += new System.EventHandler(this.cboFile_SelectedIndexChanged);
//
// txtLST
//
this.txtLST.Location = new System.Drawing.Point(16, 66);
this.txtLST.Multiline = true;
this.txtLST.Name = "txtLST";
this.txtLST.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtLST.Size = new System.Drawing.Size(271, 309);
this.txtLST.TabIndex = 1;
//
// lblEx
//
this.lblEx.Location = new System.Drawing.Point(293, 71);
this.lblEx.Name = "lblEx";
this.lblEx.Size = new System.Drawing.Size(101, 304);
this.lblEx.TabIndex = 3;
this.lblEx.Text = "Example:\r\n\r\n//\r\n[Section Title]\r\n//\r\n0\r\nm1.tie\r\nMission description\r\n1\r\nm2.tie\r\nK" +
"eep to 1 line\r\n//\r\n[Next Section]\r\n//\r\n2\r\nm3.tie\r\netc";
//
// LstForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(396, 387);
this.Controls.Add(this.lblEx);
this.Controls.Add(this.txtLST);
this.Controls.Add(this.cboFile);
this.Controls.Add(this.cmdSave);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(412, 2000);
this.MinimumSize = new System.Drawing.Size(412, 400);
this.Name = "LstForm";
this.Text = "YOGEME LST Editor";
this.Resize += new System.EventHandler(this.form_Resize);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button cmdSave;
private System.Windows.Forms.ComboBox cboFile;
private System.Windows.Forms.TextBox txtLST;
private System.Windows.Forms.Label lblEx;
}
}