155 lines
6.7 KiB
C#
155 lines
6.7 KiB
C#
namespace D2Multi
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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(Form1));
|
|
this.dgvAccounts = new System.Windows.Forms.DataGridView();
|
|
this.btnLaunch = new System.Windows.Forms.Button();
|
|
this.cboServer = new System.Windows.Forms.ComboBox();
|
|
this.btnAdd = new System.Windows.Forms.Button();
|
|
this.btnDelete = new System.Windows.Forms.Button();
|
|
this.btnSave = new System.Windows.Forms.Button();
|
|
this.txExeAddictional = new System.Windows.Forms.TextBox();
|
|
this.btnViewCharacters = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvAccounts)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dgvAccounts
|
|
//
|
|
this.dgvAccounts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvAccounts.Location = new System.Drawing.Point(12, 12);
|
|
this.dgvAccounts.Name = "dgvAccounts";
|
|
this.dgvAccounts.RowHeadersWidth = 51;
|
|
this.dgvAccounts.RowTemplate.Height = 24;
|
|
this.dgvAccounts.Size = new System.Drawing.Size(779, 255);
|
|
this.dgvAccounts.TabIndex = 0;
|
|
//
|
|
// btnLaunch
|
|
//
|
|
this.btnLaunch.Location = new System.Drawing.Point(796, 70);
|
|
this.btnLaunch.Name = "btnLaunch";
|
|
this.btnLaunch.Size = new System.Drawing.Size(158, 36);
|
|
this.btnLaunch.TabIndex = 1;
|
|
this.btnLaunch.Text = "Launch";
|
|
this.btnLaunch.UseVisualStyleBackColor = true;
|
|
this.btnLaunch.Click += new System.EventHandler(this.btnLaunch_Click);
|
|
//
|
|
// cboServer
|
|
//
|
|
this.cboServer.FormattingEnabled = true;
|
|
this.cboServer.Location = new System.Drawing.Point(797, 12);
|
|
this.cboServer.Name = "cboServer";
|
|
this.cboServer.Size = new System.Drawing.Size(158, 24);
|
|
this.cboServer.TabIndex = 2;
|
|
//
|
|
// btnAdd
|
|
//
|
|
this.btnAdd.Location = new System.Drawing.Point(12, 276);
|
|
this.btnAdd.Name = "btnAdd";
|
|
this.btnAdd.Size = new System.Drawing.Size(100, 32);
|
|
this.btnAdd.TabIndex = 3;
|
|
this.btnAdd.Text = "Add";
|
|
this.btnAdd.UseVisualStyleBackColor = true;
|
|
this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
|
|
//
|
|
// btnDelete
|
|
//
|
|
this.btnDelete.Location = new System.Drawing.Point(118, 276);
|
|
this.btnDelete.Name = "btnDelete";
|
|
this.btnDelete.Size = new System.Drawing.Size(100, 32);
|
|
this.btnDelete.TabIndex = 4;
|
|
this.btnDelete.Text = "Delete";
|
|
this.btnDelete.UseVisualStyleBackColor = true;
|
|
this.btnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.Location = new System.Drawing.Point(224, 276);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Size = new System.Drawing.Size(100, 32);
|
|
this.btnSave.TabIndex = 5;
|
|
this.btnSave.Text = "Save";
|
|
this.btnSave.UseVisualStyleBackColor = true;
|
|
this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
|
|
//
|
|
// txExeAddictional
|
|
//
|
|
this.txExeAddictional.Location = new System.Drawing.Point(797, 42);
|
|
this.txExeAddictional.Name = "txExeAddictional";
|
|
this.txExeAddictional.Size = new System.Drawing.Size(157, 22);
|
|
this.txExeAddictional.TabIndex = 6;
|
|
this.txExeAddictional.Text = "-mod PY -txt";
|
|
//
|
|
// btnViewCharacters
|
|
//
|
|
this.btnViewCharacters.Location = new System.Drawing.Point(330, 276);
|
|
this.btnViewCharacters.Name = "btnViewCharacters";
|
|
this.btnViewCharacters.Size = new System.Drawing.Size(158, 32);
|
|
this.btnViewCharacters.TabIndex = 7;
|
|
this.btnViewCharacters.Text = "View Characters";
|
|
this.btnViewCharacters.UseVisualStyleBackColor = true;
|
|
this.btnViewCharacters.Click += new System.EventHandler(this.btnViewCharacters_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(966, 315);
|
|
this.Controls.Add(this.btnViewCharacters);
|
|
this.Controls.Add(this.txExeAddictional);
|
|
this.Controls.Add(this.btnSave);
|
|
this.Controls.Add(this.btnDelete);
|
|
this.Controls.Add(this.btnAdd);
|
|
this.Controls.Add(this.cboServer);
|
|
this.Controls.Add(this.btnLaunch);
|
|
this.Controls.Add(this.dgvAccounts);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "Form1";
|
|
this.Text = "D2 Accounts";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvAccounts)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dgvAccounts;
|
|
private System.Windows.Forms.Button btnLaunch;
|
|
private System.Windows.Forms.ComboBox cboServer;
|
|
private System.Windows.Forms.Button btnAdd;
|
|
private System.Windows.Forms.Button btnDelete;
|
|
private System.Windows.Forms.Button btnSave;
|
|
private System.Windows.Forms.TextBox txExeAddictional;
|
|
private System.Windows.Forms.Button btnViewCharacters;
|
|
}
|
|
}
|
|
|