Most controls in CreateTournamentForm are implemented

This commit is contained in:
2020-04-05 23:53:11 +02:00
parent 8ac467e2f0
commit af9ee4113d
7 changed files with 147 additions and 42 deletions

View File

@ -41,8 +41,8 @@
this.cratePrizeButton = new System.Windows.Forms.Button();
this.tournamentTeamsListBox = new System.Windows.Forms.ListBox();
this.tournamentPlayersLabel = new System.Windows.Forms.Label();
this.deleteSelectedPlayerButton = new System.Windows.Forms.Button();
this.deleteSelectedPrizeButton = new System.Windows.Forms.Button();
this.removeSelectedPlayerButton = new System.Windows.Forms.Button();
this.removeSelectedPrizeButton = new System.Windows.Forms.Button();
this.prizesLabel = new System.Windows.Forms.Label();
this.prizesListBox = new System.Windows.Forms.ListBox();
this.createTournamentButton = new System.Windows.Forms.Button();
@ -124,6 +124,7 @@
this.createNewTeamLink.TabIndex = 15;
this.createNewTeamLink.TabStop = true;
this.createNewTeamLink.Text = "Create New Team";
this.createNewTeamLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.createNewTeamLink_LinkClicked);
//
// addTeamButton
//
@ -138,6 +139,7 @@
this.addTeamButton.TabIndex = 16;
this.addTeamButton.Text = "Add Team";
this.addTeamButton.UseVisualStyleBackColor = true;
this.addTeamButton.Click += new System.EventHandler(this.addTeamButton_Click);
//
// cratePrizeButton
//
@ -152,6 +154,7 @@
this.cratePrizeButton.TabIndex = 17;
this.cratePrizeButton.Text = "Create Prize";
this.cratePrizeButton.UseVisualStyleBackColor = true;
this.cratePrizeButton.Click += new System.EventHandler(this.cratePrizeButton_Click);
//
// tournamentTeamsListBox
//
@ -174,33 +177,34 @@
this.tournamentPlayersLabel.TabIndex = 19;
this.tournamentPlayersLabel.Text = "Teams / Players";
//
// deleteSelectedPlayerButton
// removeSelectedPlayerButton
//
this.deleteSelectedPlayerButton.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
this.deleteSelectedPlayerButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.DimGray;
this.deleteSelectedPlayerButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
this.deleteSelectedPlayerButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.deleteSelectedPlayerButton.ForeColor = System.Drawing.Color.DodgerBlue;
this.deleteSelectedPlayerButton.Location = new System.Drawing.Point(796, 159);
this.deleteSelectedPlayerButton.Name = "deleteSelectedPlayerButton";
this.deleteSelectedPlayerButton.Size = new System.Drawing.Size(125, 73);
this.deleteSelectedPlayerButton.TabIndex = 20;
this.deleteSelectedPlayerButton.Text = "Delete Selected";
this.deleteSelectedPlayerButton.UseVisualStyleBackColor = true;
this.removeSelectedPlayerButton.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
this.removeSelectedPlayerButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.DimGray;
this.removeSelectedPlayerButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
this.removeSelectedPlayerButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.removeSelectedPlayerButton.ForeColor = System.Drawing.Color.DodgerBlue;
this.removeSelectedPlayerButton.Location = new System.Drawing.Point(796, 159);
this.removeSelectedPlayerButton.Name = "removeSelectedPlayerButton";
this.removeSelectedPlayerButton.Size = new System.Drawing.Size(125, 73);
this.removeSelectedPlayerButton.TabIndex = 20;
this.removeSelectedPlayerButton.Text = "Remove Selected";
this.removeSelectedPlayerButton.UseVisualStyleBackColor = true;
this.removeSelectedPlayerButton.Click += new System.EventHandler(this.removeSelectedPlayerButton_Click);
//
// deleteSelectedPrizeButton
// removeSelectedPrizeButton
//
this.deleteSelectedPrizeButton.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
this.deleteSelectedPrizeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.DimGray;
this.deleteSelectedPrizeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
this.deleteSelectedPrizeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.deleteSelectedPrizeButton.ForeColor = System.Drawing.Color.DodgerBlue;
this.deleteSelectedPrizeButton.Location = new System.Drawing.Point(796, 365);
this.deleteSelectedPrizeButton.Name = "deleteSelectedPrizeButton";
this.deleteSelectedPrizeButton.Size = new System.Drawing.Size(125, 73);
this.deleteSelectedPrizeButton.TabIndex = 23;
this.deleteSelectedPrizeButton.Text = "Delete Selected";
this.deleteSelectedPrizeButton.UseVisualStyleBackColor = true;
this.removeSelectedPrizeButton.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
this.removeSelectedPrizeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.DimGray;
this.removeSelectedPrizeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
this.removeSelectedPrizeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.removeSelectedPrizeButton.ForeColor = System.Drawing.Color.DodgerBlue;
this.removeSelectedPrizeButton.Location = new System.Drawing.Point(796, 365);
this.removeSelectedPrizeButton.Name = "removeSelectedPrizeButton";
this.removeSelectedPrizeButton.Size = new System.Drawing.Size(125, 73);
this.removeSelectedPrizeButton.TabIndex = 23;
this.removeSelectedPrizeButton.Text = "Remove Selected";
this.removeSelectedPrizeButton.UseVisualStyleBackColor = true;
//
// prizesLabel
//
@ -244,10 +248,10 @@
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(945, 594);
this.Controls.Add(this.createTournamentButton);
this.Controls.Add(this.deleteSelectedPrizeButton);
this.Controls.Add(this.removeSelectedPrizeButton);
this.Controls.Add(this.prizesLabel);
this.Controls.Add(this.prizesListBox);
this.Controls.Add(this.deleteSelectedPlayerButton);
this.Controls.Add(this.removeSelectedPlayerButton);
this.Controls.Add(this.tournamentPlayersLabel);
this.Controls.Add(this.tournamentTeamsListBox);
this.Controls.Add(this.cratePrizeButton);
@ -284,8 +288,8 @@
private System.Windows.Forms.Button cratePrizeButton;
private System.Windows.Forms.ListBox tournamentTeamsListBox;
private System.Windows.Forms.Label tournamentPlayersLabel;
private System.Windows.Forms.Button deleteSelectedPlayerButton;
private System.Windows.Forms.Button deleteSelectedPrizeButton;
private System.Windows.Forms.Button removeSelectedPlayerButton;
private System.Windows.Forms.Button removeSelectedPrizeButton;
private System.Windows.Forms.Label prizesLabel;
private System.Windows.Forms.ListBox prizesListBox;
private System.Windows.Forms.Button createTournamentButton;