namespace WinFormsApp4 { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); label1 = new Label(); loginTextBox = new TextBox(); pwdTextBox = new TextBox(); loginButton = new Button(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Font = new Font("Franklin Gothic Demi", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 204); label1.Location = new Point(22, 78); label1.Name = "label1"; label1.Size = new Size(279, 24); label1.TabIndex = 0; label1.Text = "ВВЕДИ СВОЙ ЛОГИН И ПАРОЛЬ"; // // loginTextBox // loginTextBox.ForeColor = Color.Black; loginTextBox.Location = new Point(49, 116); loginTextBox.Name = "loginTextBox"; loginTextBox.PlaceholderText = "СЮДА ЛОГИН"; loginTextBox.Size = new Size(208, 23); loginTextBox.TabIndex = 1; loginTextBox.TextAlign = HorizontalAlignment.Center; // // pwdTextBox // pwdTextBox.ForeColor = Color.Black; pwdTextBox.Location = new Point(49, 145); pwdTextBox.Name = "pwdTextBox"; pwdTextBox.PlaceholderText = "СЮДА ПАРОЛЬ"; pwdTextBox.Size = new Size(208, 23); pwdTextBox.TabIndex = 2; pwdTextBox.TextAlign = HorizontalAlignment.Center; pwdTextBox.UseSystemPasswordChar = true; // // loginButton // loginButton.Font = new Font("Franklin Gothic Demi", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 204); loginButton.Location = new Point(49, 189); loginButton.Name = "loginButton"; loginButton.Size = new Size(208, 38); loginButton.TabIndex = 3; loginButton.Text = "СЕЙЧАС"; loginButton.UseVisualStyleBackColor = true; loginButton.Click += loginButton_Click; // // Form1 // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; BackgroundImage = (Image)resources.GetObject("$this.BackgroundImage"); BackgroundImageLayout = ImageLayout.Zoom; ClientSize = new Size(588, 300); Controls.Add(loginButton); Controls.Add(pwdTextBox); Controls.Add(loginTextBox); Controls.Add(label1); FormBorderStyle = FormBorderStyle.FixedSingle; Icon = (Icon)resources.GetObject("$this.Icon"); MaximizeBox = false; Name = "Form1"; Text = "Вход"; ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private TextBox loginTextBox; private TextBox pwdTextBox; private Button loginButton; } }