Files
Greed/WinGreed/frmStart.Designer.cs
2022-07-13 22:59:19 +02:00

170 lines
7.0 KiB
C#

namespace WinGreed
{
partial class frmStart
{
/// <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.label1 = new System.Windows.Forms.Label();
this.btnSpela = new System.Windows.Forms.Button();
this.lvMemberList = new System.Windows.Forms.ListView();
this.Spelare = new System.Windows.Forms.ColumnHeader();
this.Vunnit = new System.Windows.Forms.ColumnHeader();
this.Points = new System.Windows.Forms.ColumnHeader();
this.btnAddPlayer = new System.Windows.Forms.Button();
this.txtNewName = new System.Windows.Forms.TextBox();
this.btnAddOk = new System.Windows.Forms.Button();
this.btnSound = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.label1.Location = new System.Drawing.Point(25, 26);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(294, 30);
this.label1.TabIndex = 0;
this.label1.Text = "Welcome to World of Greed!";
//
// btnSpela
//
this.btnSpela.Location = new System.Drawing.Point(25, 97);
this.btnSpela.Name = "btnSpela";
this.btnSpela.Size = new System.Drawing.Size(134, 23);
this.btnSpela.TabIndex = 1;
this.btnSpela.Text = "Spela en omgång";
this.btnSpela.UseVisualStyleBackColor = true;
this.btnSpela.Click += new System.EventHandler(this.btnSpela_Click);
//
// lvMemberList
//
this.lvMemberList.Activation = System.Windows.Forms.ItemActivation.OneClick;
this.lvMemberList.BackColor = System.Drawing.SystemColors.Window;
this.lvMemberList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.Spelare,
this.Vunnit,
this.Points});
this.lvMemberList.GridLines = true;
this.lvMemberList.HoverSelection = true;
this.lvMemberList.Location = new System.Drawing.Point(387, 97);
this.lvMemberList.Name = "lvMemberList";
this.lvMemberList.Size = new System.Drawing.Size(302, 166);
this.lvMemberList.TabIndex = 2;
this.lvMemberList.UseCompatibleStateImageBehavior = false;
this.lvMemberList.View = System.Windows.Forms.View.Details;
//
// Spelare
//
this.Spelare.Text = "S p e l a r e";
this.Spelare.Width = 100;
//
// Vunnit
//
this.Vunnit.Text = "V u n n i t";
this.Vunnit.Width = 80;
//
// Points
//
this.Points.Text = "Poäng";
this.Points.Width = 100;
//
// btnAddPlayer
//
this.btnAddPlayer.Location = new System.Drawing.Point(27, 129);
this.btnAddPlayer.Name = "btnAddPlayer";
this.btnAddPlayer.Size = new System.Drawing.Size(132, 23);
this.btnAddPlayer.TabIndex = 3;
this.btnAddPlayer.Text = "Lägg till Spelare";
this.btnAddPlayer.UseVisualStyleBackColor = true;
this.btnAddPlayer.Click += new System.EventHandler(this.btnAddPlayer_Click);
//
// txtNewName
//
this.txtNewName.Location = new System.Drawing.Point(165, 130);
this.txtNewName.Name = "txtNewName";
this.txtNewName.Size = new System.Drawing.Size(177, 23);
this.txtNewName.TabIndex = 4;
this.txtNewName.Visible = false;
this.txtNewName.TextChanged += new System.EventHandler(this.txtNewName_TextChanged);
//
// btnAddOk
//
this.btnAddOk.Location = new System.Drawing.Point(350, 129);
this.btnAddOk.Name = "btnAddOk";
this.btnAddOk.Size = new System.Drawing.Size(31, 23);
this.btnAddOk.TabIndex = 5;
this.btnAddOk.Text = "Ok";
this.btnAddOk.UseCompatibleTextRendering = true;
this.btnAddOk.UseVisualStyleBackColor = true;
this.btnAddOk.Visible = false;
this.btnAddOk.Click += new System.EventHandler(this.btnAddOk_Click);
//
// btnSound
//
this.btnSound.Location = new System.Drawing.Point(350, 34);
this.btnSound.Name = "btnSound";
this.btnSound.Size = new System.Drawing.Size(75, 23);
this.btnSound.TabIndex = 6;
this.btnSound.Text = "sound";
this.btnSound.UseVisualStyleBackColor = true;
this.btnSound.Visible = false;
this.btnSound.Click += new System.EventHandler(this.btnSound_Click);
//
// frmStart
//
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.btnSound);
this.Controls.Add(this.btnAddOk);
this.Controls.Add(this.txtNewName);
this.Controls.Add(this.btnAddPlayer);
this.Controls.Add(this.lvMemberList);
this.Controls.Add(this.btnSpela);
this.Controls.Add(this.label1);
this.Name = "frmStart";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "G R E E D";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label1;
private Button btnSpela;
private ListView lvMemberList;
private ColumnHeader Spelare;
private ColumnHeader Vunnit;
private ColumnHeader Points;
private Button btnAddPlayer;
private TextBox txtNewName;
private Button btnAddOk;
private Button btnSound;
}
}