forked from FreeRDP/FreeRDP-Sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConnectionDialog.Designer.cs
127 lines (121 loc) · 4.12 KB
/
ConnectionDialog.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
namespace NFreeRDP
{
partial class ConnectionDialog
{
/// <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.lblHostname = new System.Windows.Forms.Label();
this.lblUsername = new System.Windows.Forms.Label();
this.txtHostname = new System.Windows.Forms.TextBox();
this.txtUsername = new System.Windows.Forms.TextBox();
this.btnConnect = new System.Windows.Forms.Button();
this.lblPassword = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// lblHostname
//
this.lblHostname.AutoSize = true;
this.lblHostname.Location = new System.Drawing.Point(28, 31);
this.lblHostname.Name = "lblHostname";
this.lblHostname.Size = new System.Drawing.Size(58, 13);
this.lblHostname.TabIndex = 0;
this.lblHostname.Text = "Hostname:";
//
// lblUsername
//
this.lblUsername.AutoSize = true;
this.lblUsername.Location = new System.Drawing.Point(28, 59);
this.lblUsername.Name = "lblUsername";
this.lblUsername.Size = new System.Drawing.Size(58, 13);
this.lblUsername.TabIndex = 1;
this.lblUsername.Text = "Username:";
//
// txtHostname
//
this.txtHostname.Location = new System.Drawing.Point(104, 28);
this.txtHostname.Name = "txtHostname";
this.txtHostname.Size = new System.Drawing.Size(191, 20);
this.txtHostname.TabIndex = 2;
//
// txtUsername
//
this.txtUsername.Location = new System.Drawing.Point(104, 54);
this.txtUsername.Name = "txtUsername";
this.txtUsername.Size = new System.Drawing.Size(191, 20);
this.txtUsername.TabIndex = 3;
//
// btnConnect
//
this.btnConnect.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnConnect.Location = new System.Drawing.Point(220, 106);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(75, 23);
this.btnConnect.TabIndex = 4;
this.btnConnect.Text = "Connect";
this.btnConnect.UseVisualStyleBackColor = true;
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(28, 83);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(56, 13);
this.lblPassword.TabIndex = 5;
this.lblPassword.Text = "Password:";
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(104, 80);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(191, 20);
this.txtPassword.TabIndex = 6;
//
// ConnectionDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(324, 145);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.lblPassword);
this.Controls.Add(this.btnConnect);
this.Controls.Add(this.txtUsername);
this.Controls.Add(this.txtHostname);
this.Controls.Add(this.lblUsername);
this.Controls.Add(this.lblHostname);
this.Name = "ConnectionDialog";
this.Text = "Connection";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblHostname;
private System.Windows.Forms.Label lblUsername;
private System.Windows.Forms.TextBox txtHostname;
private System.Windows.Forms.TextBox txtUsername;
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.Label lblPassword;
private System.Windows.Forms.TextBox txtPassword;
}
}