-
Notifications
You must be signed in to change notification settings - Fork 4
/
GoToDialog.Designer.cs
125 lines (118 loc) · 4.11 KB
/
GoToDialog.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using Menees.Windows.Forms;
namespace Menees.Diffs.Windows.Forms
{
partial class GoToDialog
{
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
private System.Windows.Forms.NumericUpDown edtLineNumber;
private System.Windows.Forms.Label lblLineNumber;
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (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.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.lblLineNumber = new System.Windows.Forms.Label();
this.edtLineNumber = new System.Windows.Forms.NumericUpDown();
((System.ComponentModel.ISupportInitialize)(this.edtLineNumber)).BeginInit();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(63, 71);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(90, 28);
this.btnOK.TabIndex = 2;
this.btnOK.Text = "OK";
//
// 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(164, 71);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(90, 28);
this.btnCancel.TabIndex = 3;
this.btnCancel.Text = "Cancel";
//
// lblLineNumber
//
this.lblLineNumber.AutoSize = true;
this.lblLineNumber.Location = new System.Drawing.Point(10, 10);
this.lblLineNumber.Name = "lblLineNumber";
this.lblLineNumber.Size = new System.Drawing.Size(110, 15);
this.lblLineNumber.TabIndex = 0;
this.lblLineNumber.Text = "&Line Number (1-N):";
//
// edtLineNumber
//
this.edtLineNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.edtLineNumber.Location = new System.Drawing.Point(10, 34);
this.edtLineNumber.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.edtLineNumber.Name = "edtLineNumber";
this.edtLineNumber.Size = new System.Drawing.Size(245, 23);
this.edtLineNumber.TabIndex = 1;
this.edtLineNumber.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// GoToDialog
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(266, 111);
this.Controls.Add(this.edtLineNumber);
this.Controls.Add(this.lblLineNumber);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "GoToDialog";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Go To Line";
this.Shown += new System.EventHandler(this.GoToDialog_Shown);
((System.ComponentModel.ISupportInitialize)(this.edtLineNumber)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
}
}