107 lines
4.3 KiB
C#
107 lines
4.3 KiB
C#
namespace BankView
|
|
{
|
|
partial class CurrencyForm
|
|
{
|
|
/// <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.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.CurrencyID = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.button3 = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.CurrencyID});
|
|
this.dataGridView1.Location = new System.Drawing.Point(12, 12);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.Size = new System.Drawing.Size(243, 150);
|
|
this.dataGridView1.TabIndex = 9;
|
|
//
|
|
// CurrencyID
|
|
//
|
|
this.CurrencyID.HeaderText = "Наименование валюты";
|
|
this.CurrencyID.Name = "CurrencyID";
|
|
this.CurrencyID.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.CurrencyID.Width = 200;
|
|
//
|
|
// button3
|
|
//
|
|
this.button3.Location = new System.Drawing.Point(291, 98);
|
|
this.button3.Name = "button3";
|
|
this.button3.Size = new System.Drawing.Size(75, 23);
|
|
this.button3.TabIndex = 8;
|
|
this.button3.Text = "Удалить";
|
|
this.button3.UseVisualStyleBackColor = true;
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(291, 54);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(75, 23);
|
|
this.button2.TabIndex = 7;
|
|
this.button2.Text = "Изменить";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(291, 12);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.TabIndex = 6;
|
|
this.button1.Text = "Добавить";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// CurrencyForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(374, 177);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Controls.Add(this.button3);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Name = "CurrencyForm";
|
|
this.Text = "Валюта";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn CurrencyID;
|
|
private System.Windows.Forms.Button button3;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.Button button1;
|
|
}
|
|
} |