Worms4Editor/W4Gui/Components/StatisticsPanel.Designer.cs

158 lines
7.3 KiB
C#

namespace W4Gui.Components
{
partial class StatisticsPanel
{
/// <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 Component 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.statisticsTabControl = new System.Windows.Forms.TabControl();
this.generalTab = new System.Windows.Forms.TabPage();
this.tblGeneral = new System.Windows.Forms.TableLayoutPanel();
this.lblStatsValues = new System.Windows.Forms.Label();
this.lblTeamName = new System.Windows.Forms.Label();
this.selTeamName = new System.Windows.Forms.TextBox();
this.selStatValues = new W4Gui.Components.IntList();
this.statisticsTabControl.SuspendLayout();
this.generalTab.SuspendLayout();
this.tblGeneral.SuspendLayout();
this.SuspendLayout();
//
// statisticsTabControl
//
this.statisticsTabControl.Controls.Add(this.generalTab);
this.statisticsTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.statisticsTabControl.HotTrack = true;
this.statisticsTabControl.Location = new System.Drawing.Point(0, 0);
this.statisticsTabControl.Name = "statisticsTabControl";
this.statisticsTabControl.SelectedIndex = 0;
this.statisticsTabControl.Size = new System.Drawing.Size(707, 419);
this.statisticsTabControl.TabIndex = 1;
//
// generalTab
//
this.generalTab.BackColor = System.Drawing.Color.Transparent;
this.generalTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.generalTab.Controls.Add(this.tblGeneral);
this.generalTab.Location = new System.Drawing.Point(4, 24);
this.generalTab.Name = "generalTab";
this.generalTab.Padding = new System.Windows.Forms.Padding(3);
this.generalTab.Size = new System.Drawing.Size(699, 391);
this.generalTab.TabIndex = 0;
this.generalTab.Text = "General";
//
// tblGeneral
//
this.tblGeneral.AutoSize = true;
this.tblGeneral.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset;
this.tblGeneral.ColumnCount = 2;
this.tblGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tblGeneral.Controls.Add(this.lblStatsValues, 0, 1);
this.tblGeneral.Controls.Add(this.lblTeamName, 0, 0);
this.tblGeneral.Controls.Add(this.selTeamName, 1, 0);
this.tblGeneral.Controls.Add(this.selStatValues, 1, 1);
this.tblGeneral.Dock = System.Windows.Forms.DockStyle.Top;
this.tblGeneral.Location = new System.Drawing.Point(3, 3);
this.tblGeneral.Name = "tblGeneral";
this.tblGeneral.RowCount = 2;
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tblGeneral.Size = new System.Drawing.Size(689, 130);
this.tblGeneral.TabIndex = 0;
//
// lblStatsValues
//
this.lblStatsValues.AutoSize = true;
this.lblStatsValues.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblStatsValues.Location = new System.Drawing.Point(5, 33);
this.lblStatsValues.Name = "lblStatsValues";
this.lblStatsValues.Size = new System.Drawing.Size(93, 95);
this.lblStatsValues.TabIndex = 17;
this.lblStatsValues.Text = "Statistics Values:";
this.lblStatsValues.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblTeamName
//
this.lblTeamName.AutoSize = true;
this.lblTeamName.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblTeamName.Location = new System.Drawing.Point(5, 2);
this.lblTeamName.Name = "lblTeamName";
this.lblTeamName.Size = new System.Drawing.Size(93, 29);
this.lblTeamName.TabIndex = 0;
this.lblTeamName.Text = "Team Name:";
this.lblTeamName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// selTeamName
//
this.selTeamName.Dock = System.Windows.Forms.DockStyle.Top;
this.selTeamName.Location = new System.Drawing.Point(106, 5);
this.selTeamName.Name = "selTeamName";
this.selTeamName.PlaceholderText = "Team Name";
this.selTeamName.ReadOnly = true;
this.selTeamName.Size = new System.Drawing.Size(578, 23);
this.selTeamName.TabIndex = 1;
//
// selStatValues
//
this.selStatValues.AutoSize = true;
this.selStatValues.Dock = System.Windows.Forms.DockStyle.Fill;
this.selStatValues.Label = "%n";
this.selStatValues.Location = new System.Drawing.Point(106, 36);
this.selStatValues.Name = "selStatValues";
this.selStatValues.Size = new System.Drawing.Size(578, 89);
this.selStatValues.TabIndex = 18;
//
// StatisticsPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LightGray;
this.Controls.Add(this.statisticsTabControl);
this.Name = "StatisticsPanel";
this.Size = new System.Drawing.Size(707, 419);
this.statisticsTabControl.ResumeLayout(false);
this.generalTab.ResumeLayout(false);
this.generalTab.PerformLayout();
this.tblGeneral.ResumeLayout(false);
this.tblGeneral.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private TabControl statisticsTabControl;
private TabPage generalTab;
private TableLayoutPanel tblGeneral;
private Label lblTeamName;
private TextBox selTeamName;
private Label lblStatsValues;
private IntList selStatValues;
}
}