318 lines
15 KiB
C#
318 lines
15 KiB
C#
|
|
namespace ValasztasGUI
|
|
{
|
|
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.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.fájlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.megnyitásToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.kilépésToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.műveletekToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.statisztikaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.nyertesekToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.súgóToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.listBox1 = new System.Windows.Forms.ListBox();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.szavazatmezo = new System.Windows.Forms.TextBox();
|
|
this.label6 = new System.Windows.Forms.Label();
|
|
this.partmezo = new System.Windows.Forms.TextBox();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.keruletmezo = new System.Windows.Forms.TextBox();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.nevmezo = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.listBox2 = new System.Windows.Forms.ListBox();
|
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|
this.névjegyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fájlToolStripMenuItem,
|
|
this.műveletekToolStripMenuItem,
|
|
this.súgóToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(424, 24);
|
|
this.menuStrip1.TabIndex = 0;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fájlToolStripMenuItem
|
|
//
|
|
this.fájlToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.megnyitásToolStripMenuItem,
|
|
this.kilépésToolStripMenuItem});
|
|
this.fájlToolStripMenuItem.Name = "fájlToolStripMenuItem";
|
|
this.fájlToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|
this.fájlToolStripMenuItem.Text = "Fájl";
|
|
//
|
|
// megnyitásToolStripMenuItem
|
|
//
|
|
this.megnyitásToolStripMenuItem.Name = "megnyitásToolStripMenuItem";
|
|
this.megnyitásToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
|
|
this.megnyitásToolStripMenuItem.Text = "Megnyitás";
|
|
this.megnyitásToolStripMenuItem.Click += new System.EventHandler(this.megnyitásToolStripMenuItem_Click);
|
|
//
|
|
// kilépésToolStripMenuItem
|
|
//
|
|
this.kilépésToolStripMenuItem.Name = "kilépésToolStripMenuItem";
|
|
this.kilépésToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
|
|
this.kilépésToolStripMenuItem.Text = "Kilépés";
|
|
this.kilépésToolStripMenuItem.Click += new System.EventHandler(this.kilépésToolStripMenuItem_Click);
|
|
//
|
|
// műveletekToolStripMenuItem
|
|
//
|
|
this.műveletekToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.statisztikaToolStripMenuItem,
|
|
this.nyertesekToolStripMenuItem});
|
|
this.műveletekToolStripMenuItem.Name = "műveletekToolStripMenuItem";
|
|
this.műveletekToolStripMenuItem.Size = new System.Drawing.Size(74, 20);
|
|
this.műveletekToolStripMenuItem.Text = "Műveletek";
|
|
//
|
|
// statisztikaToolStripMenuItem
|
|
//
|
|
this.statisztikaToolStripMenuItem.Name = "statisztikaToolStripMenuItem";
|
|
this.statisztikaToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.statisztikaToolStripMenuItem.Text = "Statisztika";
|
|
this.statisztikaToolStripMenuItem.Click += new System.EventHandler(this.statisztikaToolStripMenuItem_Click);
|
|
//
|
|
// nyertesekToolStripMenuItem
|
|
//
|
|
this.nyertesekToolStripMenuItem.Name = "nyertesekToolStripMenuItem";
|
|
this.nyertesekToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.nyertesekToolStripMenuItem.Text = "Nyertesek";
|
|
this.nyertesekToolStripMenuItem.Click += new System.EventHandler(this.nyertesekToolStripMenuItem_Click);
|
|
//
|
|
// súgóToolStripMenuItem
|
|
//
|
|
this.súgóToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.névjegyToolStripMenuItem});
|
|
this.súgóToolStripMenuItem.Name = "súgóToolStripMenuItem";
|
|
this.súgóToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
|
|
this.súgóToolStripMenuItem.Text = "Súgó";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|
this.label1.ForeColor = System.Drawing.Color.Blue;
|
|
this.label1.Location = new System.Drawing.Point(100, 40);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(224, 24);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "Választási eredmények";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 84);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(75, 13);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "Jelöltek listája:";
|
|
//
|
|
// listBox1
|
|
//
|
|
this.listBox1.FormattingEnabled = true;
|
|
this.listBox1.Location = new System.Drawing.Point(12, 100);
|
|
this.listBox1.Name = "listBox1";
|
|
this.listBox1.Size = new System.Drawing.Size(149, 342);
|
|
this.listBox1.TabIndex = 3;
|
|
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.szavazatmezo);
|
|
this.groupBox1.Controls.Add(this.label6);
|
|
this.groupBox1.Controls.Add(this.partmezo);
|
|
this.groupBox1.Controls.Add(this.label5);
|
|
this.groupBox1.Controls.Add(this.keruletmezo);
|
|
this.groupBox1.Controls.Add(this.label4);
|
|
this.groupBox1.Controls.Add(this.nevmezo);
|
|
this.groupBox1.Controls.Add(this.label3);
|
|
this.groupBox1.Location = new System.Drawing.Point(177, 84);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(235, 153);
|
|
this.groupBox1.TabIndex = 4;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Kiválasztott jelölt adatai:";
|
|
//
|
|
// szavazatmezo
|
|
//
|
|
this.szavazatmezo.Location = new System.Drawing.Point(164, 122);
|
|
this.szavazatmezo.Name = "szavazatmezo";
|
|
this.szavazatmezo.Size = new System.Drawing.Size(65, 20);
|
|
this.szavazatmezo.TabIndex = 7;
|
|
//
|
|
// label6
|
|
//
|
|
this.label6.AutoSize = true;
|
|
this.label6.Location = new System.Drawing.Point(15, 125);
|
|
this.label6.Name = "label6";
|
|
this.label6.Size = new System.Drawing.Size(99, 13);
|
|
this.label6.TabIndex = 6;
|
|
this.label6.Text = "Szavazatok száma:";
|
|
//
|
|
// partmezo
|
|
//
|
|
this.partmezo.Location = new System.Drawing.Point(51, 92);
|
|
this.partmezo.Name = "partmezo";
|
|
this.partmezo.Size = new System.Drawing.Size(178, 20);
|
|
this.partmezo.TabIndex = 5;
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Location = new System.Drawing.Point(15, 92);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(29, 13);
|
|
this.label5.TabIndex = 4;
|
|
this.label5.Text = "Párt:";
|
|
//
|
|
// keruletmezo
|
|
//
|
|
this.keruletmezo.Location = new System.Drawing.Point(164, 60);
|
|
this.keruletmezo.Name = "keruletmezo";
|
|
this.keruletmezo.Size = new System.Drawing.Size(65, 20);
|
|
this.keruletmezo.TabIndex = 3;
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(15, 63);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(115, 13);
|
|
this.label4.TabIndex = 2;
|
|
this.label4.Text = "Választókerület száma:";
|
|
//
|
|
// nevmezo
|
|
//
|
|
this.nevmezo.Location = new System.Drawing.Point(51, 27);
|
|
this.nevmezo.Name = "nevmezo";
|
|
this.nevmezo.Size = new System.Drawing.Size(178, 20);
|
|
this.nevmezo.TabIndex = 1;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(15, 30);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(30, 13);
|
|
this.label3.TabIndex = 0;
|
|
this.label3.Text = "Név:";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(193, 254);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(213, 25);
|
|
this.button1.TabIndex = 5;
|
|
this.button1.Text = "Ebben a kerületben voltak még:";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// listBox2
|
|
//
|
|
this.listBox2.FormattingEnabled = true;
|
|
this.listBox2.Location = new System.Drawing.Point(177, 308);
|
|
this.listBox2.Name = "listBox2";
|
|
this.listBox2.Size = new System.Drawing.Size(235, 134);
|
|
this.listBox2.TabIndex = 6;
|
|
//
|
|
// openFileDialog1
|
|
//
|
|
this.openFileDialog1.FileName = "openFileDialog1";
|
|
//
|
|
// névjegyToolStripMenuItem
|
|
//
|
|
this.névjegyToolStripMenuItem.Name = "névjegyToolStripMenuItem";
|
|
this.névjegyToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.névjegyToolStripMenuItem.Text = "Névjegy";
|
|
this.névjegyToolStripMenuItem.Click += new System.EventHandler(this.névjegyToolStripMenuItem_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(424, 450);
|
|
this.Controls.Add(this.listBox2);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Controls.Add(this.listBox1);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "Form1";
|
|
this.Text = "Helyhatósági választások";
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem fájlToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem műveletekToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem súgóToolStripMenuItem;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.ListBox listBox1;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.TextBox szavazatmezo;
|
|
private System.Windows.Forms.Label label6;
|
|
private System.Windows.Forms.TextBox partmezo;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.TextBox keruletmezo;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.TextBox nevmezo;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.ListBox listBox2;
|
|
private System.Windows.Forms.ToolStripMenuItem megnyitásToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem kilépésToolStripMenuItem;
|
|
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
|
private System.Windows.Forms.ToolStripMenuItem statisztikaToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem nyertesekToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem névjegyToolStripMenuItem;
|
|
}
|
|
}
|
|
|