/
denispirit
/
informationSystem
Обзор
Документация
Войти
/
denispirit
/
informationSystem
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
InformationSystem/Form1.Designer.cs
130 строк
4 KB
denispirit
Первый коммит. Отправка в репозиторий
29 сен 2025, 10:39
29 сен 2025, 10:39
24ca85c
Код
Авторство
О чём код?
namespace InformationSystem { 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() { txtUsername = new TextBox(); txtPassword = new TextBox(); label1 = new Label(); label2 = new Label(); chkShowPassword = new CheckBox(); btnLogin = new Button(); btnRegister = new Button(); SuspendLayout(); // // txtUsername // txtUsername.Location = new Point(196, 76); txtUsername.Name = "txtUsername"; txtUsername.Size = new Size(140, 23); txtUsername.TabIndex = 0; // // txtPassword // txtPassword.Location = new Point(196, 131); txtPassword.Name = "txtPassword"; txtPassword.Size = new Size(140, 23); txtPassword.TabIndex = 1; // // label1 // label1.AutoSize = true; label1.Location = new Point(201, 62); label1.Name = "label1"; label1.Size = new Size(37, 15); label1.TabIndex = 2; label1.Text = "Login"; // // label2 // label2.AutoSize = true; label2.Location = new Point(199, 112); label2.Name = "label2"; label2.Size = new Size(57, 15); label2.TabIndex = 3; label2.Text = "Password"; // // chkShowPassword // chkShowPassword.AutoSize = true; chkShowPassword.Location = new Point(193, 166); chkShowPassword.Name = "chkShowPassword"; chkShowPassword.Size = new Size(119, 19); chkShowPassword.TabIndex = 4; chkShowPassword.Text = "Показать пароль"; chkShowPassword.UseVisualStyleBackColor = true; // // btnLogin // btnLogin.Location = new Point(193, 197); btnLogin.Name = "btnLogin"; btnLogin.Size = new Size(143, 23); btnLogin.TabIndex = 5; btnLogin.Text = "Войти"; btnLogin.UseVisualStyleBackColor = true; btnLogin.Click += btnLogin_Click; // // btnRegister // btnRegister.Location = new Point(193, 226); btnRegister.Name = "btnRegister"; btnRegister.Size = new Size(143, 23); btnRegister.TabIndex = 6; btnRegister.Text = "Зарегистрироваться"; btnRegister.UseVisualStyleBackColor = true; btnRegister.Click += btnRegister_Click; // // LoginForm // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(606, 377); Controls.Add(btnRegister); Controls.Add(btnLogin); Controls.Add(chkShowPassword); Controls.Add(label2); Controls.Add(label1); Controls.Add(txtPassword); Controls.Add(txtUsername); Name = "LoginForm"; Text = "Form1"; ResumeLayout(false); PerformLayout(); } #endregion private TextBox txtUsername; private TextBox txtPassword; private Label label1; private Label label2; private CheckBox chkShowPassword; private Button btnLogin; private Button btnRegister; } }