/// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.txtMessages = new System.Windows.Forms.RichTextBox();
     this.contextOuputMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.actionList1 = new Crad.Windows.Forms.Actions.ActionList();
     this.actClear = new Crad.Windows.Forms.Actions.Action();
     this.contextOuputMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.actionList1)).BeginInit();
     this.SuspendLayout();
     //
     // txtMessages
     //
     this.txtMessages.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtMessages.Location = new System.Drawing.Point(0, 0);
     this.txtMessages.Name = "txtMessages";
     this.txtMessages.Size = new System.Drawing.Size(511, 154);
     this.txtMessages.TabIndex = 0;
     this.txtMessages.Text = "";
     this.txtMessages.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TxtMessagesMouseUp);
     //
     // contextOuputMenu
     //
     this.contextOuputMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                             this.clearToolStripMenuItem});
     this.contextOuputMenu.Name = "contextOuputMenu";
     this.contextOuputMenu.Size = new System.Drawing.Size(102, 26);
     //
     // clearToolStripMenuItem
     //
     this.actionList1.SetAction(this.clearToolStripMenuItem, this.actClear);
     this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
     this.clearToolStripMenuItem.Size = new System.Drawing.Size(101, 22);
     this.clearToolStripMenuItem.Text = "Clear";
     //
     // actionList1
     //
     this.actionList1.Actions.Add(this.actClear);
     this.actionList1.ContainerControl = this;
     //
     // actClear
     //
     this.actClear.Text = "Clear";
     this.actClear.ToolTipText = "Clear Panel";
     this.actClear.Execute += new System.EventHandler(this.ActClearExecute);
     //
     // OutputPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(511, 154);
     this.Controls.Add(this.txtMessages);
     this.Name = "OutputPanel";
     this.TabText = "Output";
     this.contextOuputMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.actionList1)).EndInit();
     this.ResumeLayout(false);
 }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormExpertManager));
			this.lvExperts = new Vista_Api.ListView();
			this.colStatus = new System.Windows.Forms.ColumnHeader();
			this.colName = new System.Windows.Forms.ColumnHeader();
			this.colFileName = new System.Windows.Forms.ColumnHeader();
			this.menuFile = new System.Windows.Forms.MenuItem();
			this.menuExit = new System.Windows.Forms.MenuItem();
			this.menuHelp = new System.Windows.Forms.MenuItem();
			this.menuAbout = new System.Windows.Forms.MenuItem();
			this.openFileDialog = new Vista_Api.OpenFileDialog();
			this.toolStrip1 = new System.Windows.Forms.ToolStrip();
			this.tsbtnEnable = new System.Windows.Forms.ToolStripButton();
			this.tsbtnDisable = new System.Windows.Forms.ToolStripButton();
			this.tsbtnRefresh = new System.Windows.Forms.ToolStripButton();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.tsbtnAdd = new System.Windows.Forms.ToolStripButton();
			this.tsbtnDelete = new System.Windows.Forms.ToolStripButton();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
			this.tscbIdeVersion = new System.Windows.Forms.ToolStripComboBox();
			this.statusStrip1 = new System.Windows.Forms.StatusStrip();
			this.menuStrip1 = new System.Windows.Forms.MenuStrip();
			this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.alExpertManager = new Crad.Windows.Forms.Actions.ActionList();
			this.actEnable = new Crad.Windows.Forms.Actions.Action();
			this.actDisable = new Crad.Windows.Forms.Actions.Action();
			this.actRefresh = new Crad.Windows.Forms.Actions.Action();
			this.actAdd = new Crad.Windows.Forms.Actions.Action();
			this.actDelete = new Crad.Windows.Forms.Actions.Action();
			this.toolStrip1.SuspendLayout();
			this.menuStrip1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.alExpertManager)).BeginInit();
			this.SuspendLayout();
			// 
			// lvExperts
			// 
			this.lvExperts.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			                                	this.colStatus,
			                                	this.colName,
			                                	this.colFileName});
			this.lvExperts.Dock = System.Windows.Forms.DockStyle.Fill;
			this.lvExperts.FullRowSelect = true;
			this.lvExperts.HideSelection = false;
			this.lvExperts.Location = new System.Drawing.Point(0, 50);
			this.lvExperts.MultiSelect = false;
			this.lvExperts.Name = "lvExperts";
			this.lvExperts.Size = new System.Drawing.Size(734, 332);
			this.lvExperts.TabIndex = 0;
			this.lvExperts.UseCompatibleStateImageBehavior = false;
			this.lvExperts.View = System.Windows.Forms.View.Details;
			//this.lvExperts.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ListView_KeyUp);
			//this.lvExperts.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ListView_KeyDown);
			//this.lvExperts.Click += new System.EventHandler(this.ListView_Click);
			// 
			// colStatus
			// 
			this.colStatus.Text = "Status";
			// 
			// colName
			// 
			this.colName.Text = "Name";
			this.colName.Width = 142;
			// 
			// colFileName
			// 
			this.colFileName.Text = "FileName";
			this.colFileName.Width = 395;
			// 
			// menuFile
			// 
			this.menuFile.Index = -1;
			this.menuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
			                                 	this.menuExit});
			this.menuFile.Text = "File";
			// 
			// menuExit
			// 
			this.menuExit.Index = 0;
			this.menuExit.Text = "Exit";
			this.menuExit.Click += new System.EventHandler(this.menuExit_Click);
			// 
			// menuHelp
			// 
			this.menuHelp.Index = -1;
			this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
			                                 	this.menuAbout});
			this.menuHelp.Text = "Help";
			// 
			// menuAbout
			// 
			this.menuAbout.Index = 0;
			this.menuAbout.Text = "About ...";
			// 
			// openFileDialog
			// 
			this.openFileDialog.Filter = "IDE Experts (*.dll)|*.dll";
			// 
			// toolStrip1
			// 
			this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
			                               	this.tsbtnEnable,
			                               	this.tsbtnDisable,
			                               	this.tsbtnRefresh,
			                               	this.toolStripSeparator2,
			                               	this.tsbtnAdd,
			                               	this.tsbtnDelete,
			                               	this.toolStripSeparator1,
			                               	this.toolStripLabel1,
			                               	this.tscbIdeVersion});
			this.toolStrip1.Location = new System.Drawing.Point(0, 25);
			this.toolStrip1.Name = "toolStrip1";
			this.toolStrip1.Size = new System.Drawing.Size(734, 25);
			this.toolStrip1.TabIndex = 8;
			this.toolStrip1.Text = "toolStrip1";
			// 
			// tsbtnEnable
			// 
			this.alExpertManager.SetAction(this.tsbtnEnable, this.actEnable);
			this.tsbtnEnable.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnEnable.Image")));
			this.tsbtnEnable.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsbtnEnable.Name = "tsbtnEnable";
			this.tsbtnEnable.Size = new System.Drawing.Size(67, 22);
			this.tsbtnEnable.Text = "Enable";
			// 
			// tsbtnDisable
			// 
			this.alExpertManager.SetAction(this.tsbtnDisable, this.actDisable);
			this.tsbtnDisable.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnDisable.Image")));
			this.tsbtnDisable.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsbtnDisable.Name = "tsbtnDisable";
			this.tsbtnDisable.Size = new System.Drawing.Size(71, 22);
			this.tsbtnDisable.Text = "Disable";
			// 
			// tsbtnRefresh
			// 
			this.alExpertManager.SetAction(this.tsbtnRefresh, this.actRefresh);
			this.tsbtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnRefresh.Image")));
			this.tsbtnRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsbtnRefresh.Name = "tsbtnRefresh";
			this.tsbtnRefresh.Size = new System.Drawing.Size(72, 22);
			this.tsbtnRefresh.Text = "Refresh";
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
			// 
			// tsbtnAdd
			// 
			this.alExpertManager.SetAction(this.tsbtnAdd, this.actAdd);
			this.tsbtnAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnAdd.Image")));
			this.tsbtnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsbtnAdd.Name = "tsbtnAdd";
			this.tsbtnAdd.Size = new System.Drawing.Size(52, 22);
			this.tsbtnAdd.Text = "Add";
			// 
			// tsbtnDelete
			// 
			this.alExpertManager.SetAction(this.tsbtnDelete, this.actDelete);
			this.tsbtnDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnDelete.Image")));
			this.tsbtnDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsbtnDelete.Name = "tsbtnDelete";
			this.tsbtnDelete.Size = new System.Drawing.Size(65, 22);
			this.tsbtnDelete.Text = "Delete";
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
			// 
			// toolStripLabel1
			// 
			this.toolStripLabel1.Name = "toolStripLabel1";
			this.toolStripLabel1.Size = new System.Drawing.Size(28, 22);
			this.toolStripLabel1.Text = "IDE";
			// 
			// tscbIdeVersion
			// 
			this.tscbIdeVersion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.tscbIdeVersion.Name = "tscbIdeVersion";
			this.tscbIdeVersion.Size = new System.Drawing.Size(300, 25);
			this.tscbIdeVersion.SelectedIndexChanged += new System.EventHandler(this.cbIDEVersion_SelectedIndexChanged);
			// 
			// statusStrip1
			// 
			this.statusStrip1.Location = new System.Drawing.Point(0, 382);
			this.statusStrip1.Name = "statusStrip1";
			this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
			this.statusStrip1.Size = new System.Drawing.Size(734, 22);
			this.statusStrip1.TabIndex = 9;
			this.statusStrip1.Text = "statusStrip1";
			// 
			// menuStrip1
			// 
			this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
			                               	this.fileToolStripMenuItem});
			this.menuStrip1.Location = new System.Drawing.Point(0, 0);
			this.menuStrip1.Name = "menuStrip1";
			this.menuStrip1.Size = new System.Drawing.Size(734, 25);
			this.menuStrip1.TabIndex = 10;
			this.menuStrip1.Text = "menuStrip1";
			// 
			// fileToolStripMenuItem
			// 
			this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
			                                                  	this.aboutToolStripMenuItem,
			                                                  	this.exitToolStripMenuItem});
			this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
			this.fileToolStripMenuItem.Size = new System.Drawing.Size(39, 21);
			this.fileToolStripMenuItem.Text = "File";
			// 
			// aboutToolStripMenuItem
			// 
			this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
			this.aboutToolStripMenuItem.Size = new System.Drawing.Size(111, 22);
			this.aboutToolStripMenuItem.Text = "About";
			// 
			// exitToolStripMenuItem
			// 
			this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
			this.exitToolStripMenuItem.Size = new System.Drawing.Size(111, 22);
			this.exitToolStripMenuItem.Text = "Exit";
			this.exitToolStripMenuItem.Click += new System.EventHandler(this.menuExit_Click);
			// 
			// alExpertManager
			// 
			this.alExpertManager.Actions.Add(this.actEnable);
			this.alExpertManager.Actions.Add(this.actDisable);
			this.alExpertManager.Actions.Add(this.actRefresh);
			this.alExpertManager.Actions.Add(this.actAdd);
			this.alExpertManager.Actions.Add(this.actDelete);
			this.alExpertManager.ContainerControl = this;
			// 
			// actEnable
			// 
			this.actEnable.Image = ((System.Drawing.Image)(resources.GetObject("actEnable.Image")));
			this.actEnable.Text = "Enable";
			this.actEnable.ToolTipText = "Enable";
			this.actEnable.Update += new System.EventHandler(this.actEnable_Update);
			this.actEnable.Execute += new System.EventHandler(this.btActivate_Click);
			// 
			// actDisable
			// 
			this.actDisable.Image = ((System.Drawing.Image)(resources.GetObject("actDisable.Image")));
			this.actDisable.Text = "Disable";
			this.actDisable.ToolTipText = "Disable";
			this.actDisable.Update += new System.EventHandler(this.actDisable_Update);
			this.actDisable.Execute += new System.EventHandler(this.btDesactivate_Click);
			// 
			// actRefresh
			// 
			this.actRefresh.Image = ((System.Drawing.Image)(resources.GetObject("actRefresh.Image")));
			this.actRefresh.Text = "Refresh";
			this.actRefresh.ToolTipText = "Refresh";
			this.actRefresh.Execute += new System.EventHandler(this.btRefresh_Click);
			// 
			// actAdd
			// 
			this.actAdd.Image = ((System.Drawing.Image)(resources.GetObject("actAdd.Image")));
			this.actAdd.Text = "Add";
			this.actAdd.ToolTipText = "Add";
			this.actAdd.Execute += new System.EventHandler(this.btAdd_Click);
			// 
			// actDelete
			// 
			this.actDelete.Image = ((System.Drawing.Image)(resources.GetObject("actDelete.Image")));
			this.actDelete.Text = "Delete";
			this.actDelete.ToolTipText = "Delete";
			this.actDelete.Update += new System.EventHandler(this.actDelete_Update);
			this.actDelete.Execute += new System.EventHandler(this.btDelete_Click);
			// 
			// FormExpertManager
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
			this.ClientSize = new System.Drawing.Size(734, 404);
			this.Controls.Add(this.lvExperts);
			this.Controls.Add(this.statusStrip1);
			this.Controls.Add(this.toolStrip1);
			this.Controls.Add(this.menuStrip1);
			this.Font = new System.Drawing.Font("Tahoma", 8.25F);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MainMenuStrip = this.menuStrip1;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(750, 440);
			this.Name = "FormExpertManager";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Expert Manager";
			this.Load += new System.EventHandler(this.FrmMain_Load);
			this.toolStrip1.ResumeLayout(false);
			this.toolStrip1.PerformLayout();
			this.menuStrip1.ResumeLayout(false);
			this.menuStrip1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.alExpertManager)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Example #3
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPlusManager));
            this.tbPlusInfo = new System.Windows.Forms.RichTextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.tbPlus = new System.Windows.Forms.TextBox();
            this.gbFeature = new System.Windows.Forms.GroupBox();
            this.tbFeatureInfo = new System.Windows.Forms.RichTextBox();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.tsbtnSave = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.tslblIDE = new System.Windows.Forms.ToolStripLabel();
            this.tscbIdeVersion = new System.Windows.Forms.ToolStripComboBox();
            this.alPlusManager = new Crad.Windows.Forms.Actions.ActionList();
            this.actSave = new Crad.Windows.Forms.Actions.Action();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.tvPlusList = new ZetaLib.Windows.Controls.TriStateCheckBoxesTreeView();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.gbFeature.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.alPlusManager)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tbPlusInfo
            // 
            this.tbPlusInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tbPlusInfo.Location = new System.Drawing.Point(3, 66);
            this.tbPlusInfo.Name = "tbPlusInfo";
            this.tbPlusInfo.ReadOnly = true;
            this.tbPlusInfo.Size = new System.Drawing.Size(388, 74);
            this.tbPlusInfo.TabIndex = 12;
            this.tbPlusInfo.Text = "";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label1.Location = new System.Drawing.Point(3, 45);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(388, 18);
            this.label1.TabIndex = 11;
            this.label1.Text = "Plus Information:";
            // 
            // tbPlus
            // 
            this.tbPlus.BackColor = System.Drawing.SystemColors.Control;
            this.tbPlus.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.tbPlus.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tbPlus.Location = new System.Drawing.Point(3, 3);
            this.tbPlus.Multiline = true;
            this.tbPlus.Name = "tbPlus";
            this.tbPlus.Size = new System.Drawing.Size(388, 39);
            this.tbPlus.TabIndex = 9;
            // 
            // gbFeature
            // 
            this.gbFeature.Controls.Add(this.tbFeatureInfo);
            this.gbFeature.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gbFeature.Location = new System.Drawing.Point(3, 146);
            this.gbFeature.Name = "gbFeature";
            this.gbFeature.Size = new System.Drawing.Size(388, 277);
            this.gbFeature.TabIndex = 2;
            this.gbFeature.TabStop = false;
            this.gbFeature.Text = "Feature";
            // 
            // tbFeatureInfo
            // 
            this.tbFeatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tbFeatureInfo.Location = new System.Drawing.Point(3, 17);
            this.tbFeatureInfo.Name = "tbFeatureInfo";
            this.tbFeatureInfo.ReadOnly = true;
            this.tbFeatureInfo.Size = new System.Drawing.Size(382, 257);
            this.tbFeatureInfo.TabIndex = 1;
            this.tbFeatureInfo.Text = "";
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsbtnSave,
            this.toolStripSeparator1,
            this.tslblIDE,
            this.tscbIdeVersion});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(558, 25);
            this.toolStrip1.TabIndex = 4;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // tsbtnSave
            // 
            this.alPlusManager.SetAction(this.tsbtnSave, this.actSave);
            this.tsbtnSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnSave.Image")));
            this.tsbtnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbtnSave.Name = "tsbtnSave";
            this.tsbtnSave.Size = new System.Drawing.Size(55, 22);
            this.tsbtnSave.Text = "Save";
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // tslblIDE
            // 
            this.tslblIDE.Name = "tslblIDE";
            this.tslblIDE.Size = new System.Drawing.Size(28, 22);
            this.tslblIDE.Text = "IDE";
            // 
            // tscbIdeVersion
            // 
            this.tscbIdeVersion.Name = "tscbIdeVersion";
            this.tscbIdeVersion.Size = new System.Drawing.Size(280, 25);
            this.tscbIdeVersion.Text = "(Select)";
            this.tscbIdeVersion.SelectedIndexChanged += new System.EventHandler(this.cbIDEVersion_SelectedIndexChanged);
            // 
            // alPlusManager
            // 
            this.alPlusManager.Actions.Add(this.actSave);
            this.alPlusManager.ContainerControl = this;
            // 
            // actSave
            // 
            this.actSave.Image = ((System.Drawing.Image)(resources.GetObject("actSave.Image")));
            this.actSave.Text = "Save";
            this.actSave.ToolTipText = "Save";
            this.actSave.Update += new System.EventHandler(this.actSave_Update);
            this.actSave.Execute += new System.EventHandler(this.actSave_Execute);
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.IsSplitterFixed = true;
            this.splitContainer1.Location = new System.Drawing.Point(0, 25);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.tvPlusList);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.tableLayoutPanel1);
            this.splitContainer1.Size = new System.Drawing.Size(558, 426);
            this.splitContainer1.SplitterDistance = 160;
            this.splitContainer1.TabIndex = 5;
            // 
            // tvPlusList
            // 
            this.tvPlusList.AutoCheckChilds = true;
            this.tvPlusList.AutoCheckParents = true;
            this.tvPlusList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tvPlusList.ImageIndex = 0;
            this.tvPlusList.ImageList = this.imageList1;
            this.tvPlusList.IndeterminateToChecked = true;
            this.tvPlusList.Location = new System.Drawing.Point(0, 0);
            this.tvPlusList.Name = "tvPlusList";
            this.tvPlusList.SelectedImageIndex = 0;
            this.tvPlusList.Size = new System.Drawing.Size(160, 426);
            this.tvPlusList.TabIndex = 0;
            this.tvPlusList.UseTriStateCheckBoxes = true;
            this.tvPlusList.AfterTriStateCheck += new ZetaLib.Windows.Controls.TriStateCheckBoxesTreeView.AfterTriStateCheckEventHandler(this.tvPlusList_AfterTriStateCheck);
            this.tvPlusList.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvPlusList_AfterSelect);
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "computer.png");
            this.imageList1.Images.SetKeyName(1, "folder.png");
            this.imageList1.Images.SetKeyName(2, "text-x-generic.png");
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Controls.Add(this.tbPlus, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.gbFeature, 0, 3);
            this.tableLayoutPanel1.Controls.Add(this.tbPlusInfo, 0, 2);
            this.tableLayoutPanel1.Controls.Add(this.label1, 0, 1);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 4;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 18F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.Size = new System.Drawing.Size(394, 426);
            this.tableLayoutPanel1.TabIndex = 13;
            // 
            // FormPlusManager
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
            this.ClientSize = new System.Drawing.Size(558, 451);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.toolStrip1);
            this.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FormPlusManager";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Plus Manager";
            this.Load += new System.EventHandler(this.FormPlusManager_Load);
            this.Closed += new System.EventHandler(this.FormPlusManager_Closed);
            this.gbFeature.ResumeLayout(false);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.alPlusManager)).EndInit();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }