Worms4Editor/W4Gui/Dialogs/CollectiveSelectionDialog.D...

101 lines
4.7 KiB
C#

namespace W4Gui.Dialogs
{
partial class CollectiveSelectionDialog
{
/// <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.tblCollectiveSelection = new System.Windows.Forms.TableLayoutPanel();
this.collectiveList = new W4Gui.Components.CollectiveListBox();
this.selectButton = new System.Windows.Forms.Button();
this.tblCollectiveSelection.SuspendLayout();
this.SuspendLayout();
//
// tblCollectiveSelection
//
this.tblCollectiveSelection.ColumnCount = 1;
this.tblCollectiveSelection.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tblCollectiveSelection.Controls.Add(this.collectiveList, 0, 0);
this.tblCollectiveSelection.Controls.Add(this.selectButton, 0, 1);
this.tblCollectiveSelection.Dock = System.Windows.Forms.DockStyle.Fill;
this.tblCollectiveSelection.Location = new System.Drawing.Point(0, 0);
this.tblCollectiveSelection.Name = "tblCollectiveSelection";
this.tblCollectiveSelection.RowCount = 2;
this.tblCollectiveSelection.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tblCollectiveSelection.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblCollectiveSelection.Size = new System.Drawing.Size(287, 388);
this.tblCollectiveSelection.TabIndex = 0;
//
// collectiveList
//
this.collectiveList.Dock = System.Windows.Forms.DockStyle.Fill;
this.collectiveList.FormattingEnabled = true;
this.collectiveList.ItemHeight = 15;
this.collectiveList.Location = new System.Drawing.Point(3, 3);
this.collectiveList.Name = "collectiveList";
this.collectiveList.Size = new System.Drawing.Size(281, 345);
this.collectiveList.TabIndex = 0;
this.collectiveList.Selected += new System.EventHandler<System.EventArgs>(this.collectiveList_Selected);
//
// selectButton
//
this.selectButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.selectButton.Enabled = false;
this.selectButton.Location = new System.Drawing.Point(3, 354);
this.selectButton.Name = "selectButton";
this.selectButton.Size = new System.Drawing.Size(281, 31);
this.selectButton.TabIndex = 1;
this.selectButton.Text = "Select";
this.selectButton.UseVisualStyleBackColor = true;
this.selectButton.Click += new System.EventHandler(this.selectButton_Click);
//
// CollectiveSelectionDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(287, 388);
this.Controls.Add(this.tblCollectiveSelection);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CollectiveSelectionDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Select Item";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CollectiveSelectionDialog_FormClosing);
this.tblCollectiveSelection.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private TableLayoutPanel tblCollectiveSelection;
private Components.CollectiveListBox collectiveList;
private Button selectButton;
}
}