96 lines
4.1 KiB
C#
96 lines
4.1 KiB
C#
namespace TrackerUI
|
|
{
|
|
partial class TournamentViewerForm
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TournamentViewerForm));
|
|
this.headerLabel = new System.Windows.Forms.Label();
|
|
this.tournamentName = new System.Windows.Forms.Label();
|
|
this.roundLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// headerLabel
|
|
//
|
|
this.headerLabel.AutoSize = true;
|
|
this.headerLabel.Font = new System.Drawing.Font("Segoe UI Light", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.headerLabel.ForeColor = System.Drawing.Color.DodgerBlue;
|
|
this.headerLabel.Location = new System.Drawing.Point(24, 20);
|
|
this.headerLabel.Name = "headerLabel";
|
|
this.headerLabel.Size = new System.Drawing.Size(214, 50);
|
|
this.headerLabel.TabIndex = 0;
|
|
this.headerLabel.Text = "Tournament:";
|
|
//
|
|
// tournamentName
|
|
//
|
|
this.tournamentName.AutoSize = true;
|
|
this.tournamentName.Font = new System.Drawing.Font("Segoe UI Light", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.tournamentName.ForeColor = System.Drawing.Color.DodgerBlue;
|
|
this.tournamentName.Location = new System.Drawing.Point(244, 20);
|
|
this.tournamentName.Name = "tournamentName";
|
|
this.tournamentName.Size = new System.Drawing.Size(150, 50);
|
|
this.tournamentName.TabIndex = 1;
|
|
this.tournamentName.Tag = "";
|
|
this.tournamentName.Text = "<none>";
|
|
//
|
|
// roundLabel
|
|
//
|
|
this.roundLabel.AutoSize = true;
|
|
this.roundLabel.Location = new System.Drawing.Point(33, 99);
|
|
this.roundLabel.Name = "roundLabel";
|
|
this.roundLabel.Size = new System.Drawing.Size(73, 30);
|
|
this.roundLabel.TabIndex = 2;
|
|
this.roundLabel.Text = "Round";
|
|
//
|
|
// TournamentViewerForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 30F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.White;
|
|
this.ClientSize = new System.Drawing.Size(697, 487);
|
|
this.Controls.Add(this.roundLabel);
|
|
this.Controls.Add(this.tournamentName);
|
|
this.Controls.Add(this.headerLabel);
|
|
this.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Margin = new System.Windows.Forms.Padding(6, 7, 6, 7);
|
|
this.Name = "TournamentViewerForm";
|
|
this.Text = "Tournament Viewer";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label headerLabel;
|
|
private System.Windows.Forms.Label tournamentName;
|
|
private System.Windows.Forms.Label roundLabel;
|
|
}
|
|
}
|
|
|