/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.windowsList = new Elide.Forms.FlexListBox(); this.windowsListPanel = new Elide.Forms.FlatPanel(); this.activate = new System.Windows.Forms.Button(); this.save = new System.Windows.Forms.Button(); this.close = new System.Windows.Forms.Button(); this.accept = new System.Windows.Forms.Button(); this.windowsListPanel.SuspendLayout(); this.SuspendLayout(); // // windowsList // this.windowsList.BorderStyle = System.Windows.Forms.BorderStyle.None; this.windowsList.Dock = System.Windows.Forms.DockStyle.Fill; this.windowsList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.windowsList.Font = new System.Drawing.Font("Segoe UI", 8.25F); this.windowsList.FormattingEnabled = true; this.windowsList.ItemHeight = 16; this.windowsList.Location = new System.Drawing.Point(2, 2); this.windowsList.Name = "windowsList"; this.windowsList.Size = new System.Drawing.Size(289, 264); this.windowsList.TabIndex = 0; this.windowsList.SelectedIndexChanged += new System.EventHandler(this.windowsList_SelectedIndexChanged); // // windowsListPanel // this.windowsListPanel.Controls.Add(this.windowsList); this.windowsListPanel.Location = new System.Drawing.Point(12, 12); this.windowsListPanel.Name = "windowsListPanel"; this.windowsListPanel.Padding = new System.Windows.Forms.Padding(2); this.windowsListPanel.Size = new System.Drawing.Size(293, 268); this.windowsListPanel.TabIndex = 1; this.windowsListPanel.WideRendering = false; // // activate // this.activate.Enabled = false; this.activate.Location = new System.Drawing.Point(311, 12); this.activate.Name = "activate"; this.activate.Size = new System.Drawing.Size(90, 23); this.activate.TabIndex = 2; this.activate.Text = "&Activate"; this.activate.UseVisualStyleBackColor = true; this.activate.Click += new System.EventHandler(this.activate_Click); // // save // this.save.Enabled = false; this.save.Location = new System.Drawing.Point(311, 41); this.save.Name = "save"; this.save.Size = new System.Drawing.Size(90, 23); this.save.TabIndex = 3; this.save.Text = "&Save"; this.save.UseVisualStyleBackColor = true; this.save.Click += new System.EventHandler(this.save_Click); // // close // this.close.Enabled = false; this.close.Location = new System.Drawing.Point(311, 70); this.close.Name = "close"; this.close.Size = new System.Drawing.Size(90, 23); this.close.TabIndex = 4; this.close.Text = "&Close"; this.close.UseVisualStyleBackColor = true; this.close.Click += new System.EventHandler(this.close_Click); // // accept // this.accept.DialogResult = System.Windows.Forms.DialogResult.OK; this.accept.Location = new System.Drawing.Point(311, 257); this.accept.Name = "accept"; this.accept.Size = new System.Drawing.Size(90, 23); this.accept.TabIndex = 5; this.accept.Text = "OK"; this.accept.UseVisualStyleBackColor = true; // // OpenWindowsDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.accept; this.ClientSize = new System.Drawing.Size(414, 293); this.Controls.Add(this.accept); this.Controls.Add(this.close); this.Controls.Add(this.save); this.Controls.Add(this.activate); this.Controls.Add(this.windowsListPanel); this.Font = new System.Drawing.Font("Segoe UI", 8.25F); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "OpenWindowsDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Windows"; this.Load += new System.EventHandler(this.OpenWindowsDialog_Load); this.windowsListPanel.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.accept = new System.Windows.Forms.Button(); this.cancel = new System.Windows.Forms.Button(); this.configListPanel = new Elide.Forms.FlatPanel(); this.configList = new Elide.Forms.GroupListBox(); this.panel = new Elide.Forms.FlatPanel(); this.configListPanel.SuspendLayout(); this.SuspendLayout(); // // accept // this.accept.DialogResult = System.Windows.Forms.DialogResult.OK; this.accept.Location = new System.Drawing.Point(521, 388); this.accept.Name = "accept"; this.accept.Size = new System.Drawing.Size(75, 23); this.accept.TabIndex = 2; this.accept.Text = "OK"; this.accept.UseVisualStyleBackColor = true; this.accept.Click += new System.EventHandler(this.accept_Click); // // cancel // this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancel.Location = new System.Drawing.Point(602, 388); this.cancel.Name = "cancel"; this.cancel.Size = new System.Drawing.Size(75, 23); this.cancel.TabIndex = 3; this.cancel.Text = "Cancel"; this.cancel.UseVisualStyleBackColor = true; this.cancel.Click += new System.EventHandler(this.cancel_Click); // // configListPanel // this.configListPanel.Controls.Add(this.configList); this.configListPanel.Location = new System.Drawing.Point(12, 10); this.configListPanel.Name = "configListPanel"; this.configListPanel.Padding = new System.Windows.Forms.Padding(2); this.configListPanel.Size = new System.Drawing.Size(168, 362); this.configListPanel.TabIndex = 4; this.configListPanel.WideRendering = false; // // configList // this.configList.BorderStyle = System.Windows.Forms.BorderStyle.None; this.configList.Dock = System.Windows.Forms.DockStyle.Fill; this.configList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.configList.Font = new System.Drawing.Font("Segoe UI", 8.25F); this.configList.FormattingEnabled = true; this.configList.IntegralHeight = false; this.configList.ItemHeight = 18; this.configList.Location = new System.Drawing.Point(2, 2); this.configList.Name = "configList"; this.configList.Size = new System.Drawing.Size(164, 358); this.configList.TabIndex = 0; this.configList.SelectedIndexChanged += new System.EventHandler(this.configList_SelectedIndexChanged); // // panel // this.panel.Location = new System.Drawing.Point(199, 10); this.panel.Name = "panel"; this.panel.Padding = new System.Windows.Forms.Padding(2); this.panel.Size = new System.Drawing.Size(478, 362); this.panel.TabIndex = 1; this.panel.WideRendering = false; // // ConfigDialog // this.AcceptButton = this.accept; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancel; this.ClientSize = new System.Drawing.Size(691, 422); this.Controls.Add(this.configListPanel); this.Controls.Add(this.cancel); this.Controls.Add(this.accept); this.Controls.Add(this.panel); this.Font = new System.Drawing.Font("Segoe UI", 8.25F); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ConfigDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Options"; this.Load += new System.EventHandler(this.ConfigDialog_Load); this.configListPanel.ResumeLayout(false); this.ResumeLayout(false); }