188 lines
6.9 KiB
C#
188 lines
6.9 KiB
C#
|
|
namespace Diplom_O.SupportForms
|
|
{
|
|
partial class LoginForm
|
|
{
|
|
/// <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.loginBox = new System.Windows.Forms.TextBox();
|
|
this.passBox = new System.Windows.Forms.TextBox();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.errorLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.workButton = new System.Windows.Forms.Button();
|
|
this.canceledButton = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.formBox = new System.Windows.Forms.ComboBox();
|
|
this.hideBox = new System.Windows.Forms.CheckBox();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// loginBox
|
|
//
|
|
this.loginBox.Location = new System.Drawing.Point(128, 12);
|
|
this.loginBox.Name = "loginBox";
|
|
this.loginBox.Size = new System.Drawing.Size(216, 20);
|
|
this.loginBox.TabIndex = 0;
|
|
//
|
|
// passBox
|
|
//
|
|
this.passBox.Location = new System.Drawing.Point(128, 38);
|
|
this.passBox.Name = "passBox";
|
|
this.passBox.Size = new System.Drawing.Size(216, 20);
|
|
this.passBox.TabIndex = 1;
|
|
this.passBox.UseSystemPasswordChar = true;
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.errorLabel});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 155);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(352, 22);
|
|
this.statusStrip1.TabIndex = 2;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// errorLabel
|
|
//
|
|
this.errorLabel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
|
|
this.errorLabel.ForeColor = System.Drawing.Color.Red;
|
|
this.errorLabel.Name = "errorLabel";
|
|
this.errorLabel.Size = new System.Drawing.Size(57, 17);
|
|
this.errorLabel.Text = "Ошибка.";
|
|
this.errorLabel.Visible = false;
|
|
//
|
|
// workButton
|
|
//
|
|
this.workButton.Location = new System.Drawing.Point(269, 121);
|
|
this.workButton.Name = "workButton";
|
|
this.workButton.Size = new System.Drawing.Size(75, 23);
|
|
this.workButton.TabIndex = 9;
|
|
this.workButton.Text = "Добавить";
|
|
this.workButton.UseVisualStyleBackColor = true;
|
|
this.workButton.Click += new System.EventHandler(this.workButton_Click);
|
|
//
|
|
// canceledButton
|
|
//
|
|
this.canceledButton.Location = new System.Drawing.Point(188, 121);
|
|
this.canceledButton.Name = "canceledButton";
|
|
this.canceledButton.Size = new System.Drawing.Size(75, 23);
|
|
this.canceledButton.TabIndex = 10;
|
|
this.canceledButton.Text = "Отмена";
|
|
this.canceledButton.UseVisualStyleBackColor = true;
|
|
this.canceledButton.Click += new System.EventHandler(this.canceledButton_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(81, 15);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(41, 13);
|
|
this.label1.TabIndex = 29;
|
|
this.label1.Text = "Логин:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(74, 41);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(48, 13);
|
|
this.label2.TabIndex = 30;
|
|
this.label2.Text = "Пароль:";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(12, 67);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(110, 13);
|
|
this.label4.TabIndex = 32;
|
|
this.label4.Text = "Окно по умолчанию:";
|
|
//
|
|
// formBox
|
|
//
|
|
this.formBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.formBox.FormattingEnabled = true;
|
|
this.formBox.Location = new System.Drawing.Point(128, 64);
|
|
this.formBox.Name = "formBox";
|
|
this.formBox.Size = new System.Drawing.Size(216, 21);
|
|
this.formBox.TabIndex = 3;
|
|
//
|
|
// hideBox
|
|
//
|
|
this.hideBox.AutoSize = true;
|
|
this.hideBox.Location = new System.Drawing.Point(128, 92);
|
|
this.hideBox.Name = "hideBox";
|
|
this.hideBox.Size = new System.Drawing.Size(76, 17);
|
|
this.hideBox.TabIndex = 42;
|
|
this.hideBox.Text = "Скрывать";
|
|
this.hideBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// LoginForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(352, 177);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.hideBox);
|
|
this.Controls.Add(this.formBox);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.canceledButton);
|
|
this.Controls.Add(this.workButton);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this.passBox);
|
|
this.Controls.Add(this.loginBox);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "LoginForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Штатное место";
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox loginBox;
|
|
private System.Windows.Forms.TextBox passBox;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel errorLabel;
|
|
private System.Windows.Forms.Button workButton;
|
|
private System.Windows.Forms.Button canceledButton;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.ComboBox formBox;
|
|
private System.Windows.Forms.CheckBox hideBox;
|
|
}
|
|
} |