-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmSettings.Designer.cs
97 lines (90 loc) · 3.51 KB
/
frmSettings.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
using System.ComponentModel;
namespace DCS_Module_Manager
{
partial class FrmSettings
{
/// <summary>
/// Required designer variable.
/// </summary>
private 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.txtPath = new System.Windows.Forms.TextBox();
this.lblPath = new System.Windows.Forms.Label();
this.btnBrowse = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtPath
//
this.txtPath.Location = new System.Drawing.Point(12, 32);
this.txtPath.Name = "txtPath";
this.txtPath.Size = new System.Drawing.Size(555, 20);
this.txtPath.TabIndex = 0;
//
// lblPath
//
this.lblPath.Location = new System.Drawing.Point(12, 14);
this.lblPath.Name = "lblPath";
this.lblPath.Size = new System.Drawing.Size(60, 15);
this.lblPath.TabIndex = 1;
this.lblPath.Text = "DCS Path";
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(573, 32);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(75, 23);
this.btnBrowse.TabIndex = 2;
this.btnBrowse.Text = "Browse";
this.btnBrowse.UseVisualStyleBackColor = true;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(478, 152);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(182, 23);
this.btnSave.TabIndex = 3;
this.btnSave.Text = "Save Settings";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// FrmSettings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(672, 180);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.lblPath);
this.Controls.Add(this.txtPath);
this.Name = "FrmSettings";
this.Text = "frmSettings";
this.Load += new System.EventHandler(this.FrmSettings_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.TextBox txtPath;
private System.Windows.Forms.Label lblPath;
private System.Windows.Forms.Button btnBrowse;
private System.Windows.Forms.Button btnSave;
#endregion
}
}