mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-28 19:42:42 +00:00
125 lines
4.9 KiB
C#
125 lines
4.9 KiB
C#
namespace GUI_Gokkantoor
|
|
{
|
|
partial class Admin
|
|
{
|
|
/// <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.button3 = new System.Windows.Forms.Button();
|
|
this.button4 = new System.Windows.Forms.Button();
|
|
this.listBox1 = new System.Windows.Forms.ListBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(240, 51);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(60, 27);
|
|
this.button1.TabIndex = 0;
|
|
this.button1.Text = "Add user";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(350, 53);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(75, 23);
|
|
this.button2.TabIndex = 1;
|
|
this.button2.Text = "Add match";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
//
|
|
// button3
|
|
//
|
|
this.button3.Location = new System.Drawing.Point(464, 55);
|
|
this.button3.Name = "button3";
|
|
this.button3.Size = new System.Drawing.Size(75, 23);
|
|
this.button3.TabIndex = 2;
|
|
this.button3.Text = "Add team";
|
|
this.button3.UseVisualStyleBackColor = true;
|
|
this.button3.Click += new System.EventHandler(this.button3_Click);
|
|
//
|
|
// button4
|
|
//
|
|
this.button4.Location = new System.Drawing.Point(713, 415);
|
|
this.button4.Name = "button4";
|
|
this.button4.Size = new System.Drawing.Size(75, 23);
|
|
this.button4.TabIndex = 3;
|
|
this.button4.Text = "Update";
|
|
this.button4.UseVisualStyleBackColor = true;
|
|
this.button4.Click += new System.EventHandler(this.button4_Click);
|
|
//
|
|
// listBox1
|
|
//
|
|
this.listBox1.FormattingEnabled = true;
|
|
this.listBox1.Location = new System.Drawing.Point(432, 186);
|
|
this.listBox1.Name = "listBox1";
|
|
this.listBox1.Size = new System.Drawing.Size(120, 95);
|
|
this.listBox1.TabIndex = 4;
|
|
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(470, 170);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(40, 13);
|
|
this.label1.TabIndex = 5;
|
|
this.label1.Text = "Games";
|
|
//
|
|
// Admin
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.listBox1);
|
|
this.Controls.Add(this.button4);
|
|
this.Controls.Add(this.button3);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Name = "Admin";
|
|
this.Text = "Admin";
|
|
this.Load += new System.EventHandler(this.Admin_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.Button button3;
|
|
private System.Windows.Forms.Button button4;
|
|
private System.Windows.Forms.ListBox listBox1;
|
|
private System.Windows.Forms.Label label1;
|
|
}
|
|
} |