added form
This commit is contained in:
106
20240219/WindowsFormsApp1/Form1.Designer.cs
generated
Normal file
106
20240219/WindowsFormsApp1/Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,106 @@
|
||||
|
||||
namespace WindowsFormsApp1
|
||||
{
|
||||
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()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.BackColor = System.Drawing.Color.Crimson;
|
||||
this.button1.FlatAppearance.BorderColor = System.Drawing.Color.Fuchsia;
|
||||
this.button1.FlatAppearance.BorderSize = 10;
|
||||
this.button1.Font = new System.Drawing.Font("Broadway", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
|
||||
this.button1.Location = new System.Drawing.Point(23, 41);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(457, 454);
|
||||
this.button1.TabIndex = 0;
|
||||
this.button1.Text = "GOMB";
|
||||
this.button1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
|
||||
this.button1.UseVisualStyleBackColor = false;
|
||||
this.button1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.button1_MouseClick);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
||||
this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.label1.Cursor = System.Windows.Forms.Cursors.AppStarting;
|
||||
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 80.25F);
|
||||
this.label1.ForeColor = System.Drawing.Color.DarkTurquoise;
|
||||
this.label1.Location = new System.Drawing.Point(510, 190);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(327, 122);
|
||||
this.label1.TabIndex = 1;
|
||||
this.label1.Text = "Cinke";
|
||||
this.label1.Click += new System.EventHandler(this.label1_Click);
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
this.textBox1.BackColor = System.Drawing.SystemColors.InactiveCaption;
|
||||
this.textBox1.Cursor = System.Windows.Forms.Cursors.Default;
|
||||
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 18.25F);
|
||||
this.textBox1.ForeColor = System.Drawing.Color.Tomato;
|
||||
this.textBox1.Location = new System.Drawing.Point(510, 331);
|
||||
this.textBox1.Name = "textBox1";
|
||||
this.textBox1.PasswordChar = '^';
|
||||
this.textBox1.Size = new System.Drawing.Size(250, 35);
|
||||
this.textBox1.TabIndex = 2;
|
||||
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(849, 548);
|
||||
this.Controls.Add(this.textBox1);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Form1";
|
||||
this.MouseHover += new System.EventHandler(this.Form1_MouseHover);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.TextBox textBox1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user