94 lines
3.5 KiB
C#
94 lines
3.5 KiB
C#
namespace BankView
|
||
{
|
||
partial class AmoundDueForm
|
||
{
|
||
/// <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.buttonClose = new System.Windows.Forms.Button();
|
||
this.buttonOk = new System.Windows.Forms.Button();
|
||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// buttonClose
|
||
//
|
||
this.buttonClose.Location = new System.Drawing.Point(104, 104);
|
||
this.buttonClose.Name = "buttonClose";
|
||
this.buttonClose.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonClose.TabIndex = 7;
|
||
this.buttonClose.Text = "Отмена";
|
||
this.buttonClose.UseVisualStyleBackColor = true;
|
||
//
|
||
// buttonOk
|
||
//
|
||
this.buttonOk.Location = new System.Drawing.Point(12, 104);
|
||
this.buttonOk.Name = "buttonOk";
|
||
this.buttonOk.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonOk.TabIndex = 6;
|
||
this.buttonOk.Text = "ОК";
|
||
this.buttonOk.UseVisualStyleBackColor = true;
|
||
//
|
||
// textBox1
|
||
//
|
||
this.textBox1.Location = new System.Drawing.Point(45, 54);
|
||
this.textBox1.Name = "textBox1";
|
||
this.textBox1.Size = new System.Drawing.Size(107, 20);
|
||
this.textBox1.TabIndex = 5;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(42, 9);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(110, 13);
|
||
this.label1.TabIndex = 4;
|
||
this.label1.Text = "Сумма к погашению";
|
||
//
|
||
// AmoundDueForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(214, 147);
|
||
this.Controls.Add(this.buttonClose);
|
||
this.Controls.Add(this.buttonOk);
|
||
this.Controls.Add(this.textBox1);
|
||
this.Controls.Add(this.label1);
|
||
this.Name = "AmoundDueForm";
|
||
this.Text = "Сумма к погашению";
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button buttonClose;
|
||
private System.Windows.Forms.Button buttonOk;
|
||
private System.Windows.Forms.TextBox textBox1;
|
||
private System.Windows.Forms.Label label1;
|
||
}
|
||
} |