/
DataTimeModule
/
DateTime
Обзор
Документация
Войти
/
DataTimeModule
/
DateTime
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
SQLDataDriver/Form1.Designer.cs
147 строк
5 KB
Reeltell
upload
27 май 2026, 01:50
27 май 2026, 01:50
f282598
Код
Авторство
О чём код?
namespace SQLDataDriver { partial class Form1 { /// <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() { logoPictureBox = new PictureBox(); loginLabel = new Label(); passwordLabel = new Label(); loginTextBox = new TextBox(); passwordTextBox = new TextBox(); enterButton = new Button(); guestButton = new Button(); titleLabel = new Label(); ((System.ComponentModel.ISupportInitialize)logoPictureBox).BeginInit(); SuspendLayout(); // // logoPictureBox // logoPictureBox.Location = new Point(30, 25); logoPictureBox.Name = "logoPictureBox"; logoPictureBox.Size = new Size(130, 90); logoPictureBox.SizeMode = PictureBoxSizeMode.Zoom; logoPictureBox.TabIndex = 0; logoPictureBox.TabStop = false; // // loginLabel // loginLabel.AutoSize = true; loginLabel.Location = new Point(210, 105); loginLabel.Name = "loginLabel"; loginLabel.Size = new Size(52, 20); loginLabel.TabIndex = 1; loginLabel.Text = "Логин"; // // passwordLabel // passwordLabel.AutoSize = true; passwordLabel.Location = new Point(210, 165); passwordLabel.Name = "passwordLabel"; passwordLabel.Size = new Size(62, 20); passwordLabel.TabIndex = 2; passwordLabel.Text = "Пароль"; // // loginTextBox // loginTextBox.Location = new Point(210, 128); loginTextBox.Name = "loginTextBox"; loginTextBox.Size = new Size(280, 27); loginTextBox.TabIndex = 3; // // passwordTextBox // passwordTextBox.Location = new Point(210, 188); passwordTextBox.Name = "passwordTextBox"; passwordTextBox.PasswordChar = '*'; passwordTextBox.Size = new Size(280, 27); passwordTextBox.TabIndex = 4; // // enterButton // enterButton.Location = new Point(210, 238); enterButton.Name = "enterButton"; enterButton.Size = new Size(130, 34); enterButton.TabIndex = 5; enterButton.Text = "Войти"; enterButton.UseVisualStyleBackColor = true; enterButton.Click += enterButton_Click; // // guestButton // guestButton.Location = new Point(360, 238); guestButton.Name = "guestButton"; guestButton.Size = new Size(130, 34); guestButton.TabIndex = 6; guestButton.Text = "Войти гостем"; guestButton.UseVisualStyleBackColor = true; guestButton.Click += guestButton_Click; // // titleLabel // titleLabel.AutoSize = true; titleLabel.Font = new Font("Segoe UI", 16F, FontStyle.Bold); titleLabel.Location = new Point(210, 40); titleLabel.Name = "titleLabel"; titleLabel.Size = new Size(157, 37); titleLabel.TabIndex = 7; titleLabel.Text = "ООО Обувь"; // // Form1 // AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(540, 320); Controls.Add(titleLabel); Controls.Add(guestButton); Controls.Add(enterButton); Controls.Add(passwordTextBox); Controls.Add(loginTextBox); Controls.Add(passwordLabel); Controls.Add(loginLabel); Controls.Add(logoPictureBox); FormBorderStyle = FormBorderStyle.FixedSingle; MaximizeBox = false; Name = "Form1"; StartPosition = FormStartPosition.CenterScreen; Text = "Вход"; ((System.ComponentModel.ISupportInitialize)logoPictureBox).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private PictureBox logoPictureBox; private Label loginLabel; private Label passwordLabel; private TextBox loginTextBox; private TextBox passwordTextBox; private Button enterButton; private Button guestButton; private Label titleLabel; } }