-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleUser.Designer.cs
More file actions
105 lines (98 loc) · 4.31 KB
/
Copy pathExampleUser.Designer.cs
File metadata and controls
105 lines (98 loc) · 4.31 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
namespace Example
{
partial class ExampleUser
{
/// <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.btnAuth = new System.Windows.Forms.Button();
this.btnRegister = new System.Windows.Forms.Button();
this.btnUnregister = new System.Windows.Forms.Button();
this.btnRefresh = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnAuth
//
this.btnAuth.Location = new System.Drawing.Point(18, 18);
this.btnAuth.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.btnAuth.Name = "btnAuth";
this.btnAuth.Size = new System.Drawing.Size(112, 35);
this.btnAuth.TabIndex = 0;
this.btnAuth.Text = "Authorize";
this.btnAuth.UseVisualStyleBackColor = true;
this.btnAuth.Click += new System.EventHandler(this.button1_Click);
//
// btnRegister
//
this.btnRegister.Location = new System.Drawing.Point(948, 638);
this.btnRegister.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.btnRegister.Name = "btnRegister";
this.btnRegister.Size = new System.Drawing.Size(112, 35);
this.btnRegister.TabIndex = 1;
this.btnRegister.Text = "Register";
this.btnRegister.UseVisualStyleBackColor = true;
this.btnRegister.Click += new System.EventHandler(this.btnRegister_Click);
//
// btnUnregister
//
this.btnUnregister.Location = new System.Drawing.Point(1070, 638);
this.btnUnregister.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.btnUnregister.Name = "btnUnregister";
this.btnUnregister.Size = new System.Drawing.Size(112, 35);
this.btnUnregister.TabIndex = 2;
this.btnUnregister.Text = "Unregister";
this.btnUnregister.UseVisualStyleBackColor = true;
this.btnUnregister.Click += new System.EventHandler(this.btnUnregister_Click);
//
// btnRefresh
//
this.btnRefresh.Location = new System.Drawing.Point(18, 63);
this.btnRefresh.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(112, 35);
this.btnRefresh.TabIndex = 3;
this.btnRefresh.Text = "Refresh";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.button1_Click_1);
//
// ExampleUser
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1200, 692);
this.Controls.Add(this.btnRefresh);
this.Controls.Add(this.btnUnregister);
this.Controls.Add(this.btnRegister);
this.Controls.Add(this.btnAuth);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "ExampleUser";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnAuth;
private System.Windows.Forms.Button btnRegister;
private System.Windows.Forms.Button btnUnregister;
private System.Windows.Forms.Button btnRefresh;
}
}