diff ARClient/Form1.Designer.cs @ 0:90ea68d4f92f

First release
author Ivo Smits <Ivo@UCIS.nl>
date Sat, 08 Nov 2014 22:43:51 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARClient/Form1.Designer.cs	Sat Nov 08 22:43:51 2014 +0100
@@ -0,0 +1,473 @@
+namespace ARClient {
+	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() {
+			this.lvwResourceValue = new System.Windows.Forms.TreeView();
+			this.splitContainer1 = new System.Windows.Forms.SplitContainer();
+			this.groupBox1 = new System.Windows.Forms.GroupBox();
+			this.lstResources = new System.Windows.Forms.ListBox();
+			this.cmbResourceFilter = new System.Windows.Forms.ComboBox();
+			this.groupBox3 = new System.Windows.Forms.GroupBox();
+			this.groupBox2 = new System.Windows.Forms.GroupBox();
+			this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
+			this.txtResourceSerial = new System.Windows.Forms.TextBox();
+			this.label3 = new System.Windows.Forms.Label();
+			this.label4 = new System.Windows.Forms.Label();
+			this.txtResourceStatus = new System.Windows.Forms.TextBox();
+			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
+			this.txtResourceLabel = new System.Windows.Forms.TextBox();
+			this.txtResourceKey = new System.Windows.Forms.TextBox();
+			this.label1 = new System.Windows.Forms.Label();
+			this.label2 = new System.Windows.Forms.Label();
+			this.menuStrip1 = new System.Windows.Forms.MenuStrip();
+			this.databaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.newDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.reloadDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.saveDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.openDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.saveDatabaseAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.importDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.synchronizeResourcesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.resourceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.addNewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.editSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.deleteSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.addKeyToFilterListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+			this.splitContainer1.Panel1.SuspendLayout();
+			this.splitContainer1.Panel2.SuspendLayout();
+			this.splitContainer1.SuspendLayout();
+			this.groupBox1.SuspendLayout();
+			this.groupBox3.SuspendLayout();
+			this.groupBox2.SuspendLayout();
+			this.tableLayoutPanel2.SuspendLayout();
+			this.tableLayoutPanel1.SuspendLayout();
+			this.menuStrip1.SuspendLayout();
+			this.SuspendLayout();
+			// 
+			// lvwResourceValue
+			// 
+			this.lvwResourceValue.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.lvwResourceValue.Location = new System.Drawing.Point(3, 16);
+			this.lvwResourceValue.Name = "lvwResourceValue";
+			this.lvwResourceValue.Size = new System.Drawing.Size(715, 306);
+			this.lvwResourceValue.TabIndex = 3;
+			// 
+			// splitContainer1
+			// 
+			this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.splitContainer1.Location = new System.Drawing.Point(0, 24);
+			this.splitContainer1.Name = "splitContainer1";
+			// 
+			// splitContainer1.Panel1
+			// 
+			this.splitContainer1.Panel1.Controls.Add(this.groupBox1);
+			// 
+			// splitContainer1.Panel2
+			// 
+			this.splitContainer1.Panel2.Controls.Add(this.groupBox3);
+			this.splitContainer1.Panel2.Controls.Add(this.groupBox2);
+			this.splitContainer1.Size = new System.Drawing.Size(944, 422);
+			this.splitContainer1.SplitterDistance = 219;
+			this.splitContainer1.TabIndex = 4;
+			// 
+			// groupBox1
+			// 
+			this.groupBox1.Controls.Add(this.lstResources);
+			this.groupBox1.Controls.Add(this.cmbResourceFilter);
+			this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.groupBox1.Location = new System.Drawing.Point(0, 0);
+			this.groupBox1.Name = "groupBox1";
+			this.groupBox1.Size = new System.Drawing.Size(219, 422);
+			this.groupBox1.TabIndex = 4;
+			this.groupBox1.TabStop = false;
+			this.groupBox1.Text = "Resources";
+			// 
+			// lstResources
+			// 
+			this.lstResources.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.lstResources.FormattingEnabled = true;
+			this.lstResources.Location = new System.Drawing.Point(3, 37);
+			this.lstResources.Name = "lstResources";
+			this.lstResources.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
+			this.lstResources.Size = new System.Drawing.Size(213, 381);
+			this.lstResources.Sorted = true;
+			this.lstResources.TabIndex = 0;
+			this.lstResources.SelectedIndexChanged += new System.EventHandler(this.lstResources_SelectedIndexChanged);
+			this.lstResources.DoubleClick += new System.EventHandler(this.lstResources_DoubleClick);
+			// 
+			// cmbResourceFilter
+			// 
+			this.cmbResourceFilter.Dock = System.Windows.Forms.DockStyle.Top;
+			this.cmbResourceFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+			this.cmbResourceFilter.FormattingEnabled = true;
+			this.cmbResourceFilter.Items.AddRange(new object[] {
+            "All resources",
+            "My resources",
+            "Filtered resources",
+            "Expired resources",
+            "Domain names",
+            "IPv4 networks",
+            "IPv6 networks",
+            "AS numbers",
+            "Key information"});
+			this.cmbResourceFilter.Location = new System.Drawing.Point(3, 16);
+			this.cmbResourceFilter.Name = "cmbResourceFilter";
+			this.cmbResourceFilter.Size = new System.Drawing.Size(213, 21);
+			this.cmbResourceFilter.TabIndex = 2;
+			this.cmbResourceFilter.SelectedIndexChanged += new System.EventHandler(this.cmbResourceFilter_SelectedIndexChanged);
+			// 
+			// groupBox3
+			// 
+			this.groupBox3.Controls.Add(this.lvwResourceValue);
+			this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.groupBox3.Location = new System.Drawing.Point(0, 97);
+			this.groupBox3.Name = "groupBox3";
+			this.groupBox3.Size = new System.Drawing.Size(721, 325);
+			this.groupBox3.TabIndex = 5;
+			this.groupBox3.TabStop = false;
+			this.groupBox3.Text = "Resource value";
+			// 
+			// groupBox2
+			// 
+			this.groupBox2.AutoSize = true;
+			this.groupBox2.Controls.Add(this.tableLayoutPanel2);
+			this.groupBox2.Controls.Add(this.tableLayoutPanel1);
+			this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top;
+			this.groupBox2.Location = new System.Drawing.Point(0, 0);
+			this.groupBox2.Name = "groupBox2";
+			this.groupBox2.Size = new System.Drawing.Size(721, 97);
+			this.groupBox2.TabIndex = 4;
+			this.groupBox2.TabStop = false;
+			this.groupBox2.Text = "Resource information";
+			// 
+			// tableLayoutPanel2
+			// 
+			this.tableLayoutPanel2.AutoSize = true;
+			this.tableLayoutPanel2.ColumnCount = 4;
+			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
+			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
+			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
+			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
+			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
+			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
+			this.tableLayoutPanel2.Controls.Add(this.txtResourceSerial, 1, 0);
+			this.tableLayoutPanel2.Controls.Add(this.label3, 0, 0);
+			this.tableLayoutPanel2.Controls.Add(this.label4, 2, 0);
+			this.tableLayoutPanel2.Controls.Add(this.txtResourceStatus, 3, 0);
+			this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
+			this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 68);
+			this.tableLayoutPanel2.Name = "tableLayoutPanel2";
+			this.tableLayoutPanel2.RowCount = 1;
+			this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
+			this.tableLayoutPanel2.Size = new System.Drawing.Size(715, 26);
+			this.tableLayoutPanel2.TabIndex = 7;
+			// 
+			// txtResourceSerial
+			// 
+			this.txtResourceSerial.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.txtResourceSerial.Location = new System.Drawing.Point(103, 3);
+			this.txtResourceSerial.Name = "txtResourceSerial";
+			this.txtResourceSerial.ReadOnly = true;
+			this.txtResourceSerial.Size = new System.Drawing.Size(251, 20);
+			this.txtResourceSerial.TabIndex = 7;
+			// 
+			// label3
+			// 
+			this.label3.Anchor = System.Windows.Forms.AnchorStyles.Left;
+			this.label3.AutoSize = true;
+			this.label3.Location = new System.Drawing.Point(3, 6);
+			this.label3.Name = "label3";
+			this.label3.Size = new System.Drawing.Size(33, 13);
+			this.label3.TabIndex = 4;
+			this.label3.Text = "Serial";
+			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+			// 
+			// label4
+			// 
+			this.label4.Anchor = System.Windows.Forms.AnchorStyles.Left;
+			this.label4.AutoSize = true;
+			this.label4.Location = new System.Drawing.Point(360, 6);
+			this.label4.Name = "label4";
+			this.label4.Size = new System.Drawing.Size(37, 13);
+			this.label4.TabIndex = 5;
+			this.label4.Text = "Status";
+			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+			// 
+			// txtResourceStatus
+			// 
+			this.txtResourceStatus.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.txtResourceStatus.Location = new System.Drawing.Point(460, 3);
+			this.txtResourceStatus.Name = "txtResourceStatus";
+			this.txtResourceStatus.ReadOnly = true;
+			this.txtResourceStatus.Size = new System.Drawing.Size(252, 20);
+			this.txtResourceStatus.TabIndex = 8;
+			// 
+			// tableLayoutPanel1
+			// 
+			this.tableLayoutPanel1.AutoSize = true;
+			this.tableLayoutPanel1.ColumnCount = 2;
+			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
+			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
+			this.tableLayoutPanel1.Controls.Add(this.txtResourceLabel, 1, 0);
+			this.tableLayoutPanel1.Controls.Add(this.txtResourceKey, 1, 1);
+			this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
+			this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
+			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
+			this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
+			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
+			this.tableLayoutPanel1.RowCount = 2;
+			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
+			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
+			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
+			this.tableLayoutPanel1.Size = new System.Drawing.Size(715, 52);
+			this.tableLayoutPanel1.TabIndex = 6;
+			// 
+			// txtResourceLabel
+			// 
+			this.txtResourceLabel.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.txtResourceLabel.Location = new System.Drawing.Point(103, 3);
+			this.txtResourceLabel.Name = "txtResourceLabel";
+			this.txtResourceLabel.ReadOnly = true;
+			this.txtResourceLabel.Size = new System.Drawing.Size(609, 20);
+			this.txtResourceLabel.TabIndex = 6;
+			// 
+			// txtResourceKey
+			// 
+			this.txtResourceKey.Dock = System.Windows.Forms.DockStyle.Fill;
+			this.txtResourceKey.Location = new System.Drawing.Point(103, 29);
+			this.txtResourceKey.Name = "txtResourceKey";
+			this.txtResourceKey.ReadOnly = true;
+			this.txtResourceKey.Size = new System.Drawing.Size(609, 20);
+			this.txtResourceKey.TabIndex = 5;
+			// 
+			// label1
+			// 
+			this.label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
+			this.label1.AutoSize = true;
+			this.label1.Location = new System.Drawing.Point(3, 6);
+			this.label1.Name = "label1";
+			this.label1.Size = new System.Drawing.Size(53, 13);
+			this.label1.TabIndex = 0;
+			this.label1.Text = "Resource";
+			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+			// 
+			// label2
+			// 
+			this.label2.Anchor = System.Windows.Forms.AnchorStyles.Left;
+			this.label2.AutoSize = true;
+			this.label2.Location = new System.Drawing.Point(3, 32);
+			this.label2.Name = "label2";
+			this.label2.Size = new System.Drawing.Size(58, 13);
+			this.label2.TabIndex = 1;
+			this.label2.Text = "Owner key";
+			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+			// 
+			// menuStrip1
+			// 
+			this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.databaseToolStripMenuItem,
+            this.synchronizeResourcesToolStripMenuItem,
+            this.settingsToolStripMenuItem,
+            this.resourceToolStripMenuItem});
+			this.menuStrip1.Location = new System.Drawing.Point(0, 0);
+			this.menuStrip1.Name = "menuStrip1";
+			this.menuStrip1.Size = new System.Drawing.Size(944, 24);
+			this.menuStrip1.TabIndex = 5;
+			this.menuStrip1.Text = "menuStrip1";
+			// 
+			// databaseToolStripMenuItem
+			// 
+			this.databaseToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.newDatabaseToolStripMenuItem,
+            this.reloadDatabaseToolStripMenuItem,
+            this.saveDatabaseToolStripMenuItem,
+            this.openDatabaseToolStripMenuItem,
+            this.saveDatabaseAsToolStripMenuItem,
+            this.importDatabaseToolStripMenuItem});
+			this.databaseToolStripMenuItem.Name = "databaseToolStripMenuItem";
+			this.databaseToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
+			this.databaseToolStripMenuItem.Text = "Database";
+			// 
+			// newDatabaseToolStripMenuItem
+			// 
+			this.newDatabaseToolStripMenuItem.Name = "newDatabaseToolStripMenuItem";
+			this.newDatabaseToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+			this.newDatabaseToolStripMenuItem.Text = "New database";
+			this.newDatabaseToolStripMenuItem.Click += new System.EventHandler(this.newDatabaseToolStripMenuItem_Click);
+			// 
+			// reloadDatabaseToolStripMenuItem
+			// 
+			this.reloadDatabaseToolStripMenuItem.Name = "reloadDatabaseToolStripMenuItem";
+			this.reloadDatabaseToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+			this.reloadDatabaseToolStripMenuItem.Text = "Reload database";
+			this.reloadDatabaseToolStripMenuItem.Click += new System.EventHandler(this.reloadDatabaseToolStripMenuItem_Click);
+			// 
+			// saveDatabaseToolStripMenuItem
+			// 
+			this.saveDatabaseToolStripMenuItem.Name = "saveDatabaseToolStripMenuItem";
+			this.saveDatabaseToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+			this.saveDatabaseToolStripMenuItem.Text = "Save database";
+			this.saveDatabaseToolStripMenuItem.Click += new System.EventHandler(this.saveDatabaseToolStripMenuItem_Click);
+			// 
+			// openDatabaseToolStripMenuItem
+			// 
+			this.openDatabaseToolStripMenuItem.Name = "openDatabaseToolStripMenuItem";
+			this.openDatabaseToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+			this.openDatabaseToolStripMenuItem.Text = "Open database";
+			this.openDatabaseToolStripMenuItem.Click += new System.EventHandler(this.openDatabaseToolStripMenuItem_Click);
+			// 
+			// saveDatabaseAsToolStripMenuItem
+			// 
+			this.saveDatabaseAsToolStripMenuItem.Name = "saveDatabaseAsToolStripMenuItem";
+			this.saveDatabaseAsToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+			this.saveDatabaseAsToolStripMenuItem.Text = "Save database as";
+			this.saveDatabaseAsToolStripMenuItem.Click += new System.EventHandler(this.saveDatabaseAsToolStripMenuItem_Click);
+			// 
+			// importDatabaseToolStripMenuItem
+			// 
+			this.importDatabaseToolStripMenuItem.Name = "importDatabaseToolStripMenuItem";
+			this.importDatabaseToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+			this.importDatabaseToolStripMenuItem.Text = "Import database";
+			this.importDatabaseToolStripMenuItem.Click += new System.EventHandler(this.importDatabaseToolStripMenuItem_Click);
+			// 
+			// synchronizeResourcesToolStripMenuItem
+			// 
+			this.synchronizeResourcesToolStripMenuItem.Name = "synchronizeResourcesToolStripMenuItem";
+			this.synchronizeResourcesToolStripMenuItem.Size = new System.Drawing.Size(127, 20);
+			this.synchronizeResourcesToolStripMenuItem.Text = "Synchronize resources";
+			// 
+			// settingsToolStripMenuItem
+			// 
+			this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
+			this.settingsToolStripMenuItem.Size = new System.Drawing.Size(58, 20);
+			this.settingsToolStripMenuItem.Text = "Settings";
+			this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
+			// 
+			// resourceToolStripMenuItem
+			// 
+			this.resourceToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.addNewToolStripMenuItem,
+            this.editSelectedToolStripMenuItem,
+            this.deleteSelectedToolStripMenuItem,
+            this.addKeyToFilterListToolStripMenuItem});
+			this.resourceToolStripMenuItem.Name = "resourceToolStripMenuItem";
+			this.resourceToolStripMenuItem.Size = new System.Drawing.Size(64, 20);
+			this.resourceToolStripMenuItem.Text = "Resource";
+			// 
+			// addNewToolStripMenuItem
+			// 
+			this.addNewToolStripMenuItem.Name = "addNewToolStripMenuItem";
+			this.addNewToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
+			this.addNewToolStripMenuItem.Text = "Add new";
+			this.addNewToolStripMenuItem.Click += new System.EventHandler(this.addNewToolStripMenuItem_Click);
+			// 
+			// editSelectedToolStripMenuItem
+			// 
+			this.editSelectedToolStripMenuItem.Name = "editSelectedToolStripMenuItem";
+			this.editSelectedToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
+			this.editSelectedToolStripMenuItem.Text = "Edit selected";
+			this.editSelectedToolStripMenuItem.Click += new System.EventHandler(this.editSelectedToolStripMenuItem_Click);
+			// 
+			// deleteSelectedToolStripMenuItem
+			// 
+			this.deleteSelectedToolStripMenuItem.Name = "deleteSelectedToolStripMenuItem";
+			this.deleteSelectedToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
+			this.deleteSelectedToolStripMenuItem.Text = "Delete selected";
+			this.deleteSelectedToolStripMenuItem.Click += new System.EventHandler(this.deleteSelectedToolStripMenuItem_Click);
+			// 
+			// addKeyToFilterListToolStripMenuItem
+			// 
+			this.addKeyToFilterListToolStripMenuItem.Name = "addKeyToFilterListToolStripMenuItem";
+			this.addKeyToFilterListToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
+			this.addKeyToFilterListToolStripMenuItem.Text = "Add key to filter list";
+			this.addKeyToFilterListToolStripMenuItem.Click += new System.EventHandler(this.addKeyToFilterListToolStripMenuItem_Click);
+			// 
+			// Form1
+			// 
+			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+			this.ClientSize = new System.Drawing.Size(944, 446);
+			this.Controls.Add(this.splitContainer1);
+			this.Controls.Add(this.menuStrip1);
+			this.Name = "Form1";
+			this.Text = "MARC Resource Manager";
+			this.Load += new System.EventHandler(this.Form1_Load);
+			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
+			this.splitContainer1.Panel1.ResumeLayout(false);
+			this.splitContainer1.Panel2.ResumeLayout(false);
+			this.splitContainer1.Panel2.PerformLayout();
+			this.splitContainer1.ResumeLayout(false);
+			this.groupBox1.ResumeLayout(false);
+			this.groupBox3.ResumeLayout(false);
+			this.groupBox2.ResumeLayout(false);
+			this.groupBox2.PerformLayout();
+			this.tableLayoutPanel2.ResumeLayout(false);
+			this.tableLayoutPanel2.PerformLayout();
+			this.tableLayoutPanel1.ResumeLayout(false);
+			this.tableLayoutPanel1.PerformLayout();
+			this.menuStrip1.ResumeLayout(false);
+			this.menuStrip1.PerformLayout();
+			this.ResumeLayout(false);
+			this.PerformLayout();
+
+		}
+
+		#endregion
+
+		private System.Windows.Forms.TreeView lvwResourceValue;
+		private System.Windows.Forms.SplitContainer splitContainer1;
+		private System.Windows.Forms.GroupBox groupBox1;
+		private System.Windows.Forms.ComboBox cmbResourceFilter;
+		private System.Windows.Forms.GroupBox groupBox3;
+		private System.Windows.Forms.GroupBox groupBox2;
+		private System.Windows.Forms.MenuStrip menuStrip1;
+		private System.Windows.Forms.ToolStripMenuItem synchronizeResourcesToolStripMenuItem;
+		private System.Windows.Forms.Label label2;
+		private System.Windows.Forms.Label label1;
+		private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
+		private System.Windows.Forms.TextBox txtResourceKey;
+		private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
+		private System.Windows.Forms.TextBox txtResourceSerial;
+		private System.Windows.Forms.Label label3;
+		private System.Windows.Forms.Label label4;
+		private System.Windows.Forms.TextBox txtResourceStatus;
+		private System.Windows.Forms.TextBox txtResourceLabel;
+		private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem databaseToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem newDatabaseToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem reloadDatabaseToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem saveDatabaseToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem openDatabaseToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem saveDatabaseAsToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem importDatabaseToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem resourceToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem addNewToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem editSelectedToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem deleteSelectedToolStripMenuItem;
+		private System.Windows.Forms.ToolStripMenuItem addKeyToFilterListToolStripMenuItem;
+		internal System.Windows.Forms.ListBox lstResources;
+	}
+}
+