private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BaseOptionsForm)); this.panel1 = new FreeCL.UI.Panel(); this.bApply = new System.Windows.Forms.Button(); this.bCancel = new System.Windows.Forms.Button(); this.bOk = new System.Windows.Forms.Button(); this.tvItems = new System.Windows.Forms.TreeView(); this.aClose = new FreeCL.UI.Actions.Action(this.components); this.bOptions = new FreeCL.UI.Panel(); this.pMain = new FreeCL.UI.Panel(); this.aApply = new FreeCL.UI.Actions.Action(this.components); this.panel1.SuspendLayout(); this.bOptions.SuspendLayout(); this.SuspendLayout(); // // il // this.il.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("il.ImageStream"))); this.il.Images.SetKeyName(0, ""); // // al // this.al.Actions.Add(this.aClose); this.al.Actions.Add(this.aApply); // // panel1 // this.panel1.BevelOuter = FreeCL.UI.BevelStyle.None; this.panel1.Controls.Add(this.bApply); this.panel1.Controls.Add(this.bCancel); this.panel1.Controls.Add(this.bOk); this.panel1.Dock = System.Windows.Forms.DockStyle.Right; this.panel1.Location = new System.Drawing.Point(297, 2); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(283, 28); this.panel1.TabIndex = 3; // // bApply // this.al.SetAction(this.bApply, this.aApply); this.bApply.ImageList = this.il; this.bApply.Location = new System.Drawing.Point(189, 4); this.bApply.Name = "bApply"; this.bApply.Size = new System.Drawing.Size(88, 23); this.bApply.TabIndex = 2; this.bApply.Text = "Apply"; this.bApply.UseVisualStyleBackColor = true; // // bCancel // this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.bCancel.Location = new System.Drawing.Point(95, 4); this.bCancel.Name = "bCancel"; this.bCancel.Size = new System.Drawing.Size(88, 23); this.bCancel.TabIndex = 1; this.bCancel.Text = "Cancel"; this.bCancel.UseVisualStyleBackColor = true; this.bCancel.Click += new System.EventHandler(this.BCancelClick); // // bOk // this.bOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.bOk.Location = new System.Drawing.Point(1, 4); this.bOk.Name = "bOk"; this.bOk.Size = new System.Drawing.Size(88, 23); this.bOk.TabIndex = 0; this.bOk.Text = "OK"; this.bOk.UseVisualStyleBackColor = true; this.bOk.Click += new System.EventHandler(this.BOkClick); // // tvItems // this.tvItems.Dock = System.Windows.Forms.DockStyle.Left; this.tvItems.FullRowSelect = true; this.tvItems.HideSelection = false; this.tvItems.Location = new System.Drawing.Point(0, 0); this.tvItems.Name = "tvItems"; this.tvItems.Size = new System.Drawing.Size(168, 420); this.tvItems.TabIndex = 4; this.tvItems.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TvItemsAfterSelect); // // aClose // this.aClose.Checked = false; this.aClose.Enabled = true; this.aClose.Hint = null; this.aClose.ImageIndex = 0; this.aClose.Tag = null; this.aClose.Text = "Close"; this.aClose.Visible = true; this.aClose.Execute += new System.EventHandler(this.ACloseExecute); // // bOptions // this.bOptions.AutoUpdateDockPadding = false; this.bOptions.Controls.Add(this.panel1); this.bOptions.Dock = System.Windows.Forms.DockStyle.Bottom; this.bOptions.Location = new System.Drawing.Point(0, 420); this.bOptions.Name = "bOptions"; this.bOptions.Padding = new System.Windows.Forms.Padding(2); this.bOptions.Size = new System.Drawing.Size(582, 32); this.bOptions.TabIndex = 3; // // pMain // this.pMain.Dock = System.Windows.Forms.DockStyle.Fill; this.pMain.Location = new System.Drawing.Point(168, 0); this.pMain.Name = "pMain"; this.pMain.Padding = new System.Windows.Forms.Padding(5); this.pMain.Size = new System.Drawing.Size(414, 420); this.pMain.TabIndex = 5; // // aApply // this.aApply.Checked = false; this.aApply.Enabled = true; this.aApply.Hint = null; this.aApply.Tag = null; this.aApply.Text = "Apply"; this.aApply.Visible = true; this.aApply.Execute += new System.EventHandler(this.BApplyClick); this.aApply.Update += new System.EventHandler(this.AApplyUpdate); // // BaseOptionsForm // this.AcceptButton = this.bOk; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.CancelButton = this.bCancel; this.ClientSize = new System.Drawing.Size(582, 452); this.Controls.Add(this.pMain); this.Controls.Add(this.tvItems); this.Controls.Add(this.bOptions); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Name = "BaseOptionsForm"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Options"; this.VisibleChanged += new System.EventHandler(this.BaseOptionsFormVisibleChanged); this.panel1.ResumeLayout(false); this.bOptions.ResumeLayout(false); this.ResumeLayout(false); }