120 lines
5.4 KiB
C#
120 lines
5.4 KiB
C#
namespace BankView
|
||
{
|
||
partial class MainForm
|
||
{
|
||
/// <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.label1 = new System.Windows.Forms.Label();
|
||
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
||
this.клиентToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.кредитыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.вкладыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.пополненияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.валютыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.menuStrip1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(149, 148);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(32, 13);
|
||
this.label1.TabIndex = 3;
|
||
this.label1.Text = "Лого";
|
||
//
|
||
// menuStrip1
|
||
//
|
||
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.клиентToolStripMenuItem,
|
||
this.кредитыToolStripMenuItem,
|
||
this.вкладыToolStripMenuItem,
|
||
this.пополненияToolStripMenuItem,
|
||
this.валютыToolStripMenuItem});
|
||
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
||
this.menuStrip1.Name = "menuStrip1";
|
||
this.menuStrip1.Size = new System.Drawing.Size(355, 24);
|
||
this.menuStrip1.TabIndex = 2;
|
||
this.menuStrip1.Text = "menuStrip1";
|
||
//
|
||
// клиентToolStripMenuItem
|
||
//
|
||
this.клиентToolStripMenuItem.Name = "клиентToolStripMenuItem";
|
||
this.клиентToolStripMenuItem.Size = new System.Drawing.Size(58, 20);
|
||
this.клиентToolStripMenuItem.Text = "Клиент";
|
||
//
|
||
// кредитыToolStripMenuItem
|
||
//
|
||
this.кредитыToolStripMenuItem.Name = "кредитыToolStripMenuItem";
|
||
this.кредитыToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
|
||
this.кредитыToolStripMenuItem.Text = "Кредиты";
|
||
//
|
||
// вкладыToolStripMenuItem
|
||
//
|
||
this.вкладыToolStripMenuItem.Name = "вкладыToolStripMenuItem";
|
||
this.вкладыToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
|
||
this.вкладыToolStripMenuItem.Text = "Вклады";
|
||
//
|
||
// пополненияToolStripMenuItem
|
||
//
|
||
this.пополненияToolStripMenuItem.Name = "пополненияToolStripMenuItem";
|
||
this.пополненияToolStripMenuItem.Size = new System.Drawing.Size(89, 20);
|
||
this.пополненияToolStripMenuItem.Text = "Пополнения";
|
||
//
|
||
// валютыToolStripMenuItem
|
||
//
|
||
this.валютыToolStripMenuItem.Name = "валютыToolStripMenuItem";
|
||
this.валютыToolStripMenuItem.Size = new System.Drawing.Size(63, 20);
|
||
this.валютыToolStripMenuItem.Text = "Валюты";
|
||
//
|
||
// MainForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(355, 318);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.menuStrip1);
|
||
this.Name = "MainForm";
|
||
this.Text = "Основная форма";
|
||
this.menuStrip1.ResumeLayout(false);
|
||
this.menuStrip1.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.MenuStrip menuStrip1;
|
||
private System.Windows.Forms.ToolStripMenuItem клиентToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripMenuItem кредитыToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripMenuItem вкладыToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripMenuItem пополненияToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripMenuItem валютыToolStripMenuItem;
|
||
}
|
||
} |