corrade-vassal

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 1  →  ?path2? @ 2
/Vassal/Vassal/RegionEditForm.Designer.cs
@@ -0,0 +1,259 @@
namespace Vassal
{
partial class RegionEditForm
{
/// <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(RegionEditForm));
this.Regions = new System.Windows.Forms.ListBox();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.StatusProgress = new System.Windows.Forms.ToolStripProgressBar();
this.StatusText = new System.Windows.Forms.ToolStripStatusLabel();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.LoadRegionsDialog = new System.Windows.Forms.OpenFileDialog();
this.SaveRegionsDialog = new System.Windows.Forms.SaveFileDialog();
this.button3 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.RegionName = new System.Windows.Forms.TextBox();
this.RegionPosition = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.statusStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox5.SuspendLayout();
this.SuspendLayout();
//
// Regions
//
this.Regions.DisplayMember = "Text";
this.Regions.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Regions.FormattingEnabled = true;
this.Regions.Location = new System.Drawing.Point(6, 19);
this.Regions.Name = "Regions";
this.Regions.Size = new System.Drawing.Size(336, 342);
this.Regions.Sorted = true;
this.Regions.TabIndex = 0;
this.Regions.SelectedIndexChanged += new System.EventHandler(this.RegionSelected);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.StatusProgress,
this.StatusText});
this.statusStrip1.Location = new System.Drawing.Point(0, 377);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(704, 22);
this.statusStrip1.TabIndex = 2;
this.statusStrip1.Text = "statusStrip1";
//
// StatusProgress
//
this.StatusProgress.Name = "StatusProgress";
this.StatusProgress.Size = new System.Drawing.Size(100, 16);
//
// StatusText
//
this.StatusText.Name = "StatusText";
this.StatusText.Size = new System.Drawing.Size(10, 17);
this.StatusText.Text = " ";
//
// button1
//
this.button1.Location = new System.Drawing.Point(191, 21);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 3;
this.button1.Text = "Save...";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.SaveRegionsRequested);
//
// button2
//
this.button2.Location = new System.Drawing.Point(78, 21);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 4;
this.button2.Text = "Load...";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.LoadRegionsRequested);
//
// SaveRegionsDialog
//
this.SaveRegionsDialog.Filter = "Vassal Regions (*.csv)|*.csv|All files (*.*)|*.*";
//
// button3
//
this.button3.Location = new System.Drawing.Point(245, 38);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(75, 23);
this.button3.TabIndex = 5;
this.button3.Text = "Add";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.RequestAddRegion);
//
// button4
//
this.button4.Location = new System.Drawing.Point(245, 90);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(75, 23);
this.button4.TabIndex = 6;
this.button4.Text = "Remove";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.RequestRemoveRegion);
//
// RegionName
//
this.RegionName.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.RegionName.Location = new System.Drawing.Point(6, 19);
this.RegionName.Name = "RegionName";
this.RegionName.Size = new System.Drawing.Size(221, 20);
this.RegionName.TabIndex = 7;
this.RegionName.TextChanged += new System.EventHandler(this.RegionSettingChanged);
//
// RegionPosition
//
this.RegionPosition.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.RegionPosition.Location = new System.Drawing.Point(5, 19);
this.RegionPosition.Name = "RegionPosition";
this.RegionPosition.Size = new System.Drawing.Size(221, 20);
this.RegionPosition.TabIndex = 8;
this.RegionPosition.TextChanged += new System.EventHandler(this.RegionSettingChanged);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.RegionName);
this.groupBox1.Location = new System.Drawing.Point(6, 19);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(233, 48);
this.groupBox1.TabIndex = 9;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Region Name";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.RegionPosition);
this.groupBox2.Location = new System.Drawing.Point(7, 74);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(232, 49);
this.groupBox2.TabIndex = 10;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Region Position";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.groupBox1);
this.groupBox3.Controls.Add(this.button4);
this.groupBox3.Controls.Add(this.groupBox2);
this.groupBox3.Controls.Add(this.button3);
this.groupBox3.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBox3.Location = new System.Drawing.Point(366, 12);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(326, 138);
this.groupBox3.TabIndex = 11;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Region Edit";
//
// groupBox4
//
this.groupBox4.Controls.Add(this.button2);
this.groupBox4.Controls.Add(this.button1);
this.groupBox4.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBox4.Location = new System.Drawing.Point(366, 156);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(326, 55);
this.groupBox4.TabIndex = 12;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Region File";
//
// groupBox5
//
this.groupBox5.Controls.Add(this.Regions);
this.groupBox5.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBox5.Location = new System.Drawing.Point(12, 3);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(348, 371);
this.groupBox5.TabIndex = 13;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Configured Regions";
//
// RegionEditForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(704, 399);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.statusStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "RegionEditForm";
this.Text = "Region Editor";
this.Shown += new System.EventHandler(this.RegionEditShown);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
 
}
 
#endregion
 
private System.Windows.Forms.ListBox Regions;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripProgressBar StatusProgress;
private System.Windows.Forms.ToolStripStatusLabel StatusText;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.OpenFileDialog LoadRegionsDialog;
private System.Windows.Forms.SaveFileDialog SaveRegionsDialog;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.TextBox RegionName;
private System.Windows.Forms.TextBox RegionPosition;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.GroupBox groupBox5;
}
}