165 lines
8.1 KiB
C#
165 lines
8.1 KiB
C#
namespace D2Multi
|
|
{
|
|
partial class CharacterMissionsForm
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
components.Dispose();
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
void InitializeComponent()
|
|
{
|
|
this.dgvCharacters = new System.Windows.Forms.DataGridView();
|
|
this.btnAddCharacter = new System.Windows.Forms.Button();
|
|
this.btnRemoveCharacter = new System.Windows.Forms.Button();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.panelBottom = new System.Windows.Forms.TableLayoutPanel();
|
|
this.flowLeftButtons = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.flowRightButtons = new System.Windows.Forms.FlowLayoutPanel();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvCharacters)).BeginInit();
|
|
this.panelBottom.SuspendLayout();
|
|
this.flowLeftButtons.SuspendLayout();
|
|
this.flowRightButtons.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dgvCharacters
|
|
//
|
|
this.dgvCharacters.AllowUserToAddRows = false;
|
|
this.dgvCharacters.AllowUserToDeleteRows = false;
|
|
this.dgvCharacters.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvCharacters.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dgvCharacters.Location = new System.Drawing.Point(0, 0);
|
|
this.dgvCharacters.Name = "dgvCharacters";
|
|
this.dgvCharacters.RowHeadersWidth = 40;
|
|
this.dgvCharacters.RowTemplate.Height = 24;
|
|
this.dgvCharacters.Size = new System.Drawing.Size(1183, 401);
|
|
this.dgvCharacters.TabIndex = 0;
|
|
//
|
|
// btnAddCharacter
|
|
//
|
|
this.btnAddCharacter.AutoSize = true;
|
|
this.btnAddCharacter.Location = new System.Drawing.Point(3, 3);
|
|
this.btnAddCharacter.Name = "btnAddCharacter";
|
|
this.btnAddCharacter.Size = new System.Drawing.Size(120, 28);
|
|
this.btnAddCharacter.TabIndex = 1;
|
|
this.btnAddCharacter.Text = "Add character";
|
|
this.btnAddCharacter.UseVisualStyleBackColor = true;
|
|
this.btnAddCharacter.Click += new System.EventHandler(this.BtnAddCharacter_Click);
|
|
//
|
|
// btnRemoveCharacter
|
|
//
|
|
this.btnRemoveCharacter.AutoSize = true;
|
|
this.btnRemoveCharacter.Location = new System.Drawing.Point(129, 3);
|
|
this.btnRemoveCharacter.Name = "btnRemoveCharacter";
|
|
this.btnRemoveCharacter.Size = new System.Drawing.Size(140, 28);
|
|
this.btnRemoveCharacter.TabIndex = 2;
|
|
this.btnRemoveCharacter.Text = "Remove character";
|
|
this.btnRemoveCharacter.UseVisualStyleBackColor = true;
|
|
this.btnRemoveCharacter.Click += new System.EventHandler(this.BtnRemoveCharacter_Click);
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOk.Location = new System.Drawing.Point(505, 3);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(75, 28);
|
|
this.btnOk.TabIndex = 3;
|
|
this.btnOk.Text = "OK";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(424, 3);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 28);
|
|
this.btnCancel.TabIndex = 4;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// panelBottom
|
|
//
|
|
this.panelBottom.ColumnCount = 2;
|
|
this.panelBottom.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.panelBottom.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.panelBottom.Controls.Add(this.flowLeftButtons, 0, 0);
|
|
this.panelBottom.Controls.Add(this.flowRightButtons, 1, 0);
|
|
this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.panelBottom.Location = new System.Drawing.Point(0, 401);
|
|
this.panelBottom.Name = "panelBottom";
|
|
this.panelBottom.RowCount = 1;
|
|
this.panelBottom.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.panelBottom.Size = new System.Drawing.Size(1183, 40);
|
|
this.panelBottom.TabIndex = 5;
|
|
//
|
|
// flowLeftButtons
|
|
//
|
|
this.flowLeftButtons.AutoSize = true;
|
|
this.flowLeftButtons.Controls.Add(this.btnAddCharacter);
|
|
this.flowLeftButtons.Controls.Add(this.btnRemoveCharacter);
|
|
this.flowLeftButtons.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.flowLeftButtons.Location = new System.Drawing.Point(3, 3);
|
|
this.flowLeftButtons.Name = "flowLeftButtons";
|
|
this.flowLeftButtons.Size = new System.Drawing.Size(585, 34);
|
|
this.flowLeftButtons.TabIndex = 0;
|
|
this.flowLeftButtons.WrapContents = false;
|
|
//
|
|
// flowRightButtons
|
|
//
|
|
this.flowRightButtons.AutoSize = true;
|
|
this.flowRightButtons.Controls.Add(this.btnOk);
|
|
this.flowRightButtons.Controls.Add(this.btnCancel);
|
|
this.flowRightButtons.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.flowRightButtons.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
|
|
this.flowRightButtons.Location = new System.Drawing.Point(594, 3);
|
|
this.flowRightButtons.Name = "flowRightButtons";
|
|
this.flowRightButtons.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
|
|
this.flowRightButtons.Size = new System.Drawing.Size(586, 34);
|
|
this.flowRightButtons.TabIndex = 1;
|
|
this.flowRightButtons.WrapContents = false;
|
|
//
|
|
// CharacterMissionsForm
|
|
//
|
|
this.AcceptButton = this.btnOk;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(1183, 441);
|
|
this.Controls.Add(this.dgvCharacters);
|
|
this.Controls.Add(this.panelBottom);
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(700, 400);
|
|
this.Name = "CharacterMissionsForm";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Characters";
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvCharacters)).EndInit();
|
|
this.panelBottom.ResumeLayout(false);
|
|
this.panelBottom.PerformLayout();
|
|
this.flowLeftButtons.ResumeLayout(false);
|
|
this.flowLeftButtons.PerformLayout();
|
|
this.flowRightButtons.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dgvCharacters;
|
|
private System.Windows.Forms.Button btnAddCharacter;
|
|
private System.Windows.Forms.Button btnRemoveCharacter;
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.TableLayoutPanel panelBottom;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLeftButtons;
|
|
private System.Windows.Forms.FlowLayoutPanel flowRightButtons;
|
|
}
|
|
}
|