namespace LB_VisionControls
|
{
|
partial class GoToForm
|
{
|
/// <summary>
|
/// Required designer variable.
|
/// </summary>
|
private System.ComponentModel.IContainer components = null;
|
|
/// <summary>
|
/// Clean up any resources being used.
|
/// </summary>
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
protected override void Dispose(bool disposing)
|
{
|
if (disposing && (components != null))
|
{
|
components.Dispose();
|
}
|
base.Dispose(disposing);
|
}
|
|
#region Windows Form Designer generated code
|
|
/// <summary>
|
/// Required method for Designer support - do not modify
|
/// the contents of this method with the code editor.
|
/// </summary>
|
private void InitializeComponent()
|
{
|
this.label = new System.Windows.Forms.Label();
|
this.textBox = new System.Windows.Forms.TextBox();
|
this.btnOk = new System.Windows.Forms.Button();
|
this.btnCancel = new System.Windows.Forms.Button();
|
this.SuspendLayout();
|
//
|
// label
|
//
|
this.label.AutoSize = true;
|
this.label.Location = new System.Drawing.Point(12, 8);
|
this.label.Name = "label";
|
this.label.Size = new System.Drawing.Size(71, 12);
|
this.label.TabIndex = 0;
|
this.label.Text = "行号 (1/1):";
|
//
|
// textBox
|
//
|
this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
| System.Windows.Forms.AnchorStyles.Right)));
|
this.textBox.Location = new System.Drawing.Point(12, 27);
|
this.textBox.Name = "textBox";
|
this.textBox.Size = new System.Drawing.Size(296, 21);
|
this.textBox.TabIndex = 1;
|
//
|
// btnOk
|
//
|
this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
this.btnOk.Location = new System.Drawing.Point(152, 66);
|
this.btnOk.Name = "btnOk";
|
this.btnOk.Size = new System.Drawing.Size(75, 21);
|
this.btnOk.TabIndex = 2;
|
this.btnOk.Text = "确定";
|
this.btnOk.UseVisualStyleBackColor = true;
|
//
|
// btnCancel
|
//
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
this.btnCancel.Location = new System.Drawing.Point(233, 66);
|
this.btnCancel.Name = "btnCancel";
|
this.btnCancel.Size = new System.Drawing.Size(75, 21);
|
this.btnCancel.TabIndex = 3;
|
this.btnCancel.Text = "取消";
|
this.btnCancel.UseVisualStyleBackColor = true;
|
//
|
// GoToForm
|
//
|
this.AcceptButton = this.btnOk;
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.CancelButton = this.btnCancel;
|
this.ClientSize = new System.Drawing.Size(320, 98);
|
this.Controls.Add(this.btnCancel);
|
this.Controls.Add(this.btnOk);
|
this.Controls.Add(this.textBox);
|
this.Controls.Add(this.label);
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
this.MaximizeBox = false;
|
this.MinimizeBox = false;
|
this.Name = "GoToForm";
|
this.ShowIcon = false;
|
this.ShowInTaskbar = false;
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.Text = "行";
|
this.TopMost = true;
|
this.ResumeLayout(false);
|
this.PerformLayout();
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.Label label;
|
private System.Windows.Forms.TextBox textBox;
|
private System.Windows.Forms.Button btnOk;
|
private System.Windows.Forms.Button btnCancel;
|
}
|
}
|