namespace HeuristicLab.CodeEditor { partial class GoToLineDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.cancelButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.lineNumberLabel = new System.Windows.Forms.Label(); this.lineNumberTextBox = new System.Windows.Forms.TextBox(); this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); this.SuspendLayout(); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(156, 51); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 2; this.cancelButton.Text = "&Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Enabled = false; this.okButton.Location = new System.Drawing.Point(75, 51); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 1; this.okButton.Text = "&OK"; this.okButton.UseVisualStyleBackColor = true; // // lineNumberLabel // this.lineNumberLabel.AutoSize = true; this.lineNumberLabel.Location = new System.Drawing.Point(12, 9); this.lineNumberLabel.Name = "lineNumberLabel"; this.lineNumberLabel.Size = new System.Drawing.Size(94, 13); this.lineNumberLabel.TabIndex = 3; this.lineNumberLabel.Text = "Line Number (1-1):"; // // lineNumberTextBox // this.lineNumberTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.lineNumberTextBox.Location = new System.Drawing.Point(15, 25); this.lineNumberTextBox.Name = "lineNumberTextBox"; this.lineNumberTextBox.Size = new System.Drawing.Size(212, 20); this.lineNumberTextBox.TabIndex = 0; this.lineNumberTextBox.TextChanged += new System.EventHandler(this.lineNumberTextBox_TextChanged); // // errorProvider // this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink; this.errorProvider.ContainerControl = this; // // GoToLineDialog // this.AcceptButton = this.okButton; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(243, 86); this.Controls.Add(this.lineNumberTextBox); this.Controls.Add(this.lineNumberLabel); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "GoToLineDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Go To Line"; this.Load += new System.EventHandler(this.GoToLineDialog_Load); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Label lineNumberLabel; private System.Windows.Forms.TextBox lineNumberTextBox; private System.Windows.Forms.ErrorProvider errorProvider; } }