123 lines
5.3 KiB
C#
123 lines
5.3 KiB
C#
|
namespace BlogViewModel
|
|||
|
{
|
|||
|
partial class FormUser
|
|||
|
{
|
|||
|
/// <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.UserNameLabel = new System.Windows.Forms.Label();
|
|||
|
this.UserNameTextBox = new System.Windows.Forms.TextBox();
|
|||
|
this.DateCreateLabel = new System.Windows.Forms.Label();
|
|||
|
this.DateCreateTextBox = new System.Windows.Forms.TextBox();
|
|||
|
this.SaveButton = new System.Windows.Forms.Button();
|
|||
|
this.ButtonCancel = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// UserNameLabel
|
|||
|
//
|
|||
|
this.UserNameLabel.AutoSize = true;
|
|||
|
this.UserNameLabel.Location = new System.Drawing.Point(73, 20);
|
|||
|
this.UserNameLabel.Name = "UserNameLabel";
|
|||
|
this.UserNameLabel.Size = new System.Drawing.Size(84, 20);
|
|||
|
this.UserNameLabel.TabIndex = 0;
|
|||
|
this.UserNameLabel.Text = "Название: ";
|
|||
|
//
|
|||
|
// UserNameTextBox
|
|||
|
//
|
|||
|
this.UserNameTextBox.Location = new System.Drawing.Point(163, 17);
|
|||
|
this.UserNameTextBox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|||
|
this.UserNameTextBox.Name = "UserNameTextBox";
|
|||
|
this.UserNameTextBox.Size = new System.Drawing.Size(238, 27);
|
|||
|
this.UserNameTextBox.TabIndex = 2;
|
|||
|
//
|
|||
|
// DateCreateLabel
|
|||
|
//
|
|||
|
this.DateCreateLabel.AutoSize = true;
|
|||
|
this.DateCreateLabel.Location = new System.Drawing.Point(46, 72);
|
|||
|
this.DateCreateLabel.Name = "DateCreateLabel";
|
|||
|
this.DateCreateLabel.Size = new System.Drawing.Size(121, 20);
|
|||
|
this.DateCreateLabel.TabIndex = 3;
|
|||
|
this.DateCreateLabel.Text = "Дата создания: ";
|
|||
|
//
|
|||
|
// DateCreateTextBox
|
|||
|
//
|
|||
|
this.DateCreateTextBox.Location = new System.Drawing.Point(163, 72);
|
|||
|
this.DateCreateTextBox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|||
|
this.DateCreateTextBox.Name = "DateCreateTextBox";
|
|||
|
this.DateCreateTextBox.Size = new System.Drawing.Size(238, 27);
|
|||
|
this.DateCreateTextBox.TabIndex = 4;
|
|||
|
//
|
|||
|
// SaveButton
|
|||
|
//
|
|||
|
this.SaveButton.Location = new System.Drawing.Point(223, 120);
|
|||
|
this.SaveButton.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|||
|
this.SaveButton.Name = "SaveButton";
|
|||
|
this.SaveButton.Size = new System.Drawing.Size(86, 31);
|
|||
|
this.SaveButton.TabIndex = 5;
|
|||
|
this.SaveButton.Text = "Сохранить";
|
|||
|
this.SaveButton.UseVisualStyleBackColor = true;
|
|||
|
this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
|
|||
|
//
|
|||
|
// ButtonCancel
|
|||
|
//
|
|||
|
this.ButtonCancel.Location = new System.Drawing.Point(315, 120);
|
|||
|
this.ButtonCancel.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|||
|
this.ButtonCancel.Name = "ButtonCancel";
|
|||
|
this.ButtonCancel.Size = new System.Drawing.Size(86, 31);
|
|||
|
this.ButtonCancel.TabIndex = 6;
|
|||
|
this.ButtonCancel.Text = "Отмена";
|
|||
|
this.ButtonCancel.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|||
|
//
|
|||
|
// FormUser
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(413, 164);
|
|||
|
this.Controls.Add(this.ButtonCancel);
|
|||
|
this.Controls.Add(this.SaveButton);
|
|||
|
this.Controls.Add(this.DateCreateTextBox);
|
|||
|
this.Controls.Add(this.DateCreateLabel);
|
|||
|
this.Controls.Add(this.UserNameTextBox);
|
|||
|
this.Controls.Add(this.UserNameLabel);
|
|||
|
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|||
|
this.Name = "FormUser";
|
|||
|
this.Text = "Пользователь";
|
|||
|
this.Load += new System.EventHandler(this.FormUser_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
private Label UserNameLabel;
|
|||
|
private TextBox UserNameTextBox;
|
|||
|
private Label DateCreateLabel;
|
|||
|
private TextBox DateCreateTextBox;
|
|||
|
private Button SaveButton;
|
|||
|
private Button ButtonCancel;
|
|||
|
}
|
|||
|
}
|