116 lines
4.4 KiB
C#
116 lines
4.4 KiB
C#
|
namespace Lotto
|
|||
|
{
|
|||
|
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()
|
|||
|
{
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.button2 = new System.Windows.Forms.Button();
|
|||
|
this.SorsolasCimke = new System.Windows.Forms.Label();
|
|||
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.label3 = new System.Windows.Forms.Label();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.Location = new System.Drawing.Point(12, 26);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(776, 34);
|
|||
|
this.button1.TabIndex = 0;
|
|||
|
this.button1.Text = "Sorsolás";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
//
|
|||
|
// button2
|
|||
|
//
|
|||
|
this.button2.Location = new System.Drawing.Point(12, 268);
|
|||
|
this.button2.Name = "button2";
|
|||
|
this.button2.Size = new System.Drawing.Size(776, 34);
|
|||
|
this.button2.TabIndex = 1;
|
|||
|
this.button2.Text = "Ellenörzés";
|
|||
|
this.button2.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// SorsolasCimke
|
|||
|
//
|
|||
|
this.SorsolasCimke.Font = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|||
|
this.SorsolasCimke.Location = new System.Drawing.Point(12, 72);
|
|||
|
this.SorsolasCimke.Name = "SorsolasCimke";
|
|||
|
this.SorsolasCimke.Size = new System.Drawing.Size(776, 118);
|
|||
|
this.SorsolasCimke.TabIndex = 1;
|
|||
|
//
|
|||
|
// textBox1
|
|||
|
//
|
|||
|
this.textBox1.Location = new System.Drawing.Point(12, 226);
|
|||
|
this.textBox1.Name = "textBox1";
|
|||
|
this.textBox1.Size = new System.Drawing.Size(776, 23);
|
|||
|
this.textBox1.TabIndex = 3;
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.BackColor = System.Drawing.Color.Turquoise;
|
|||
|
this.label2.Location = new System.Drawing.Point(12, 323);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(776, 27);
|
|||
|
this.label2.TabIndex = 5;
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
this.label3.Location = new System.Drawing.Point(12, 199);
|
|||
|
this.label3.Name = "label3";
|
|||
|
this.label3.Size = new System.Drawing.Size(128, 24);
|
|||
|
this.label3.TabIndex = 5;
|
|||
|
this.label3.Text = "Lottószelvény számai:";
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|||
|
this.Controls.Add(this.label3);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.textBox1);
|
|||
|
this.Controls.Add(this.SorsolasCimke);
|
|||
|
this.Controls.Add(this.button2);
|
|||
|
this.Controls.Add(this.button1);
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Form1";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button button1;
|
|||
|
private Button button2;
|
|||
|
private Label SorsolasCimke;
|
|||
|
private TextBox textBox1;
|
|||
|
private Label label2;
|
|||
|
private Label label3;
|
|||
|
}
|
|||
|
}
|