/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.btnOK = new System.Windows.Forms.Button(); this.checkedListBox = new CodeRefactor.Controls.DividedCheckedListBox(); this.btnCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.Location = new System.Drawing.Point(157, 283); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(80, 23); this.btnOK.TabIndex = 0; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.OkButtonClick); // // checkedListBox // this.checkedListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkedListBox.CheckOnClick = true; this.checkedListBox.FormattingEnabled = true; this.checkedListBox.Font = PluginBase.Settings.DefaultFont; // Do not remove!!! this.checkedListBox.Location = new System.Drawing.Point(9, 9); this.checkedListBox.Name = "checkedListBox"; this.checkedListBox.Size = new System.Drawing.Size(463, 270); this.checkedListBox.IntegralHeight = false; this.checkedListBox.TabIndex = 2; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(243, 283); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(85, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.CancelButtonClick); // // DelegateMethodsDialog // this.ShowIcon = false; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.AcceptButton = this.btnOK; this.CancelButton = this.btnCancel; this.MinimumSize = new System.Drawing.Size(400, 200); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(480, 316); this.Controls.Add(this.btnOK); this.Controls.Add(this.btnCancel); this.Controls.Add(this.checkedListBox); this.Name = "DelegateMethodsDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.ResumeLayout(false); }