forked from KimTooFlex/Social-APP-Dark-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
btnMailItem.Designer.cs
99 lines (93 loc) · 4.43 KB
/
btnMailItem.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
namespace SOCIAL_APP_BUNIFU_FRAMEWORK_DEMO
{
partial class btnMailItem
{
/// <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 Component 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.bunifuSeparator1 = new Bunifu.Framework.UI.BunifuSeparator();
this.lblFirstName = new System.Windows.Forms.Label();
this.lblEmail = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// bunifuSeparator1
//
this.bunifuSeparator1.BackColor = System.Drawing.Color.Transparent;
this.bunifuSeparator1.Dock = System.Windows.Forms.DockStyle.Left;
this.bunifuSeparator1.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(58)))), ((int)(((byte)(108)))));
this.bunifuSeparator1.LineThickness = 4;
this.bunifuSeparator1.Location = new System.Drawing.Point(0, 0);
this.bunifuSeparator1.Name = "bunifuSeparator1";
this.bunifuSeparator1.Size = new System.Drawing.Size(10, 69);
this.bunifuSeparator1.TabIndex = 4;
this.bunifuSeparator1.Transparency = 255;
this.bunifuSeparator1.Vertical = true;
this.bunifuSeparator1.Visible = false;
//
// lblFirstName
//
this.lblFirstName.AutoSize = true;
this.lblFirstName.Cursor = System.Windows.Forms.Cursors.Hand;
this.lblFirstName.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold);
this.lblFirstName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.lblFirstName.Location = new System.Drawing.Point(26, 12);
this.lblFirstName.Name = "lblFirstName";
this.lblFirstName.Size = new System.Drawing.Size(87, 20);
this.lblFirstName.TabIndex = 21;
this.lblFirstName.Text = "Name Here";
this.lblFirstName.Click += new System.EventHandler(this.lblFirstName_Click);
//
// lblEmail
//
this.lblEmail.AutoSize = true;
this.lblEmail.Cursor = System.Windows.Forms.Cursors.Hand;
this.lblEmail.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold);
this.lblEmail.ForeColor = System.Drawing.Color.DarkGray;
this.lblEmail.Location = new System.Drawing.Point(27, 32);
this.lblEmail.Name = "lblEmail";
this.lblEmail.Size = new System.Drawing.Size(62, 15);
this.lblEmail.TabIndex = 22;
this.lblEmail.Text = "email here";
this.lblEmail.Click += new System.EventHandler(this.lblEmail_Click);
//
// btnMailItem
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(49)))));
this.Controls.Add(this.lblEmail);
this.Controls.Add(this.lblFirstName);
this.Controls.Add(this.bunifuSeparator1);
this.Cursor = System.Windows.Forms.Cursors.Hand;
this.DoubleBuffered = true;
this.Name = "btnMailItem";
this.Size = new System.Drawing.Size(227, 69);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Bunifu.Framework.UI.BunifuSeparator bunifuSeparator1;
private System.Windows.Forms.Label lblFirstName;
private System.Windows.Forms.Label lblEmail;
}
}