namespace BankAccount
{
partial class Form1
{
/// <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.holderNameLbl = new System.Windows.Forms.Label();
this.amountLbl = new System.Windows.Forms.Label();
this.balanceLbl = new System.Windows.Forms.Label();
this.holderNameTxt = new System.Windows.Forms.TextBox();
this.amountTxt = new System.Windows.Forms.TextBox();
this.balanceTxt = new System.Windows.Forms.Label();
this.createAccountBtn = new System.Windows.Forms.Button();
this.depositBtn = new System.Windows.Forms.Button();
this.withdrawBtn = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// holderNameLbl
//
this.holderNameLbl.AutoSize = true;
this.holderNameLbl.Font = new System.Drawing.Font("Times New
Roman", 14.25F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.holderNameLbl.Location = new System.Drawing.Point(12,
27);
this.holderNameLbl.Name = "holderNameLbl";
this.holderNameLbl.Size = new System.Drawing.Size(199, 21);
this.holderNameLbl.TabIndex = 0;
this.holderNameLbl.Text = "Account Holder\'s Name :";
//
// amountLbl
//
this.amountLbl.AutoSize = true;
this.amountLbl.Font = new System.Drawing.Font("Times New Roman",
14.25F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.amountLbl.Location = new System.Drawing.Point(12, 67);
this.amountLbl.Name = "amountLbl";
this.amountLbl.Size = new System.Drawing.Size(123, 21);
this.amountLbl.TabIndex = 1;
this.amountLbl.Text = "Enter amount : ";
//
// balanceLbl
//
this.balanceLbl.AutoSize = true;
this.balanceLbl.Font = new System.Drawing.Font("Times New Roman",
14.25F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.balanceLbl.Location = new System.Drawing.Point(12, 112);
this.balanceLbl.Name = "balanceLbl";
this.balanceLbl.Size = new System.Drawing.Size(143, 21);
this.balanceLbl.TabIndex = 2;
this.balanceLbl.Text = "Current Balance : ";
//
// holderNameTxt
//
this.holderNameTxt.Location = new System.Drawing.Point(218,
27);
this.holderNameTxt.Name = "holderNameTxt";
this.holderNameTxt.Size = new System.Drawing.Size(222, 20);
this.holderNameTxt.TabIndex = 3;
//
// amountTxt
//
this.amountTxt.Location = new System.Drawing.Point(218, 69);
this.amountTxt.Name = "amountTxt";
this.amountTxt.Size = new System.Drawing.Size(222, 20);
this.amountTxt.TabIndex = 4;
//
// balanceTxt
//
this.balanceTxt.AutoSize = true;
this.balanceTxt.Font = new System.Drawing.Font("Times New Roman",
14.25F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.balanceTxt.Location = new System.Drawing.Point(214,
112);
this.balanceTxt.Name = "balanceTxt";
this.balanceTxt.Size = new System.Drawing.Size(66, 21);
this.balanceTxt.TabIndex = 5;
this.balanceTxt.Text = "Rs. 0 /-";
//
// createAccountBtn
//
this.createAccountBtn.Font = new System.Drawing.Font("Times New
Roman", 12F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.createAccountBtn.Location = new System.Drawing.Point(16,
183);
this.createAccountBtn.Name = "createAccountBtn";
this.createAccountBtn.Size = new System.Drawing.Size(119,
38);
this.createAccountBtn.TabIndex = 6;
this.createAccountBtn.Text = "Create Account";
this.createAccountBtn.UseVisualStyleBackColor = true;
this.createAccountBtn.Click += new
System.EventHandler(this.createAccount);
//
// depositBtn
//
this.depositBtn.Font = new System.Drawing.Font("Times New Roman",
12F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.depositBtn.Location = new System.Drawing.Point(218,
183);
this.depositBtn.Name = "depositBtn";
this.depositBtn.Size = new System.Drawing.Size(119, 38);
this.depositBtn.TabIndex = 7;
this.depositBtn.Text = "Deposit";
this.depositBtn.UseVisualStyleBackColor = true;
this.depositBtn.Click += new
System.EventHandler(this.deposit);
//
// withdrawBtn
//
this.withdrawBtn.Font = new System.Drawing.Font("Times New Roman",
12F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.withdrawBtn.Location = new System.Drawing.Point(370,
183);
this.withdrawBtn.Name = "withdrawBtn";
this.withdrawBtn.Size = new System.Drawing.Size(119, 38);
this.withdrawBtn.TabIndex = 8;
this.withdrawBtn.Text = "Withdraw";
this.withdrawBtn.UseVisualStyleBackColor = true;
this.withdrawBtn.Click += new
System.EventHandler(this.withdraw);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(575, 274);
this.Controls.Add(this.withdrawBtn);
this.Controls.Add(this.depositBtn);
this.Controls.Add(this.createAccountBtn);
this.Controls.Add(this.balanceTxt);
this.Controls.Add(this.amountTxt);
this.Controls.Add(this.holderNameTxt);
this.Controls.Add(this.balanceLbl);
this.Controls.Add(this.amountLbl);
this.Controls.Add(this.holderNameLbl);
this.Name = "Form1";
this.Text = "ABC Bank";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label holderNameLbl;
private System.Windows.Forms.Label amountLbl;
private System.Windows.Forms.Label balanceLbl;
private System.Windows.Forms.TextBox holderNameTxt;
private System.Windows.Forms.TextBox amountTxt;
private System.Windows.Forms.Label balanceTxt;
private System.Windows.Forms.Button createAccountBtn;
private System.Windows.Forms.Button depositBtn;
private System.Windows.Forms.Button withdrawBtn;
}
}
|