-
Notifications
You must be signed in to change notification settings - Fork 0
/
banking_app.Designer.cs
120 lines (115 loc) · 4.56 KB
/
banking_app.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
namespace Banking_App
{
partial class BankingApp
{
/// <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(BankingApp));
login = new Button();
signup_button = new Button();
logo_box = new PictureBox();
get_started_lable = new Label();
((System.ComponentModel.ISupportInitialize)logo_box).BeginInit();
SuspendLayout();
//
// login
//
login.BackColor = Color.FromArgb(0, 112, 224);
login.FlatAppearance.BorderColor = SystemColors.MenuHighlight;
login.FlatStyle = FlatStyle.Flat;
login.ForeColor = Color.WhiteSmoke;
login.Location = new Point(69, 232);
login.Margin = new Padding(4, 3, 4, 3);
login.Name = "login";
login.Size = new Size(256, 44);
login.TabIndex = 0;
login.Text = "Login";
login.UseMnemonic = false;
login.UseVisualStyleBackColor = false;
login.Click += login_Click;
//
// signup_button
//
signup_button.BackColor = Color.FromArgb(27, 39, 51);
signup_button.FlatStyle = FlatStyle.Popup;
signup_button.ForeColor = Color.White;
signup_button.Location = new Point(69, 300);
signup_button.Margin = new Padding(4, 3, 4, 3);
signup_button.Name = "signup_button";
signup_button.RightToLeft = RightToLeft.No;
signup_button.Size = new Size(256, 44);
signup_button.TabIndex = 2;
signup_button.Text = "Signup";
signup_button.UseVisualStyleBackColor = false;
signup_button.Click += signup_Click;
//
// logo_box
//
logo_box.Image = (Image)resources.GetObject("logo_box.Image");
logo_box.Location = new Point(37, 67);
logo_box.Name = "logo_box";
logo_box.Size = new Size(316, 62);
logo_box.SizeMode = PictureBoxSizeMode.Zoom;
logo_box.TabIndex = 3;
logo_box.TabStop = false;
//
// get_started_lable
//
get_started_lable.AutoSize = true;
get_started_lable.Location = new Point(136, 180);
get_started_lable.Name = "get_started_lable";
get_started_lable.Size = new Size(120, 22);
get_started_lable.TabIndex = 4;
get_started_lable.Text = "Get Started";
//
// banking_app
//
AutoScaleDimensions = new SizeF(10F, 22F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.White;
ClientSize = new Size(390, 397);
Controls.Add(get_started_lable);
Controls.Add(logo_box);
Controls.Add(signup_button);
Controls.Add(login);
Font = new Font("JetBrains Mono", 10.1999989F, FontStyle.Bold, GraphicsUnit.Point, 0);
ForeColor = Color.Gray;
FormBorderStyle = FormBorderStyle.FixedToolWindow;
Icon = (Icon)resources.GetObject("$this.Icon");
Margin = new Padding(4, 3, 4, 3);
MaximizeBox = false;
Name = "banking_app";
StartPosition = FormStartPosition.CenterScreen;
Text = "NS Banking App";
((System.ComponentModel.ISupportInitialize)logo_box).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button login;
private Button signup_button;
private PictureBox logo_box;
private Label get_started_lable;
}
}