-
Notifications
You must be signed in to change notification settings - Fork 10
/
DataViewerForm.Designer.cs
143 lines (136 loc) · 6.23 KB
/
DataViewerForm.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
namespace SasHarness
{
partial class DataViewerForm
{
/// <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.Label2 = new System.Windows.Forms.Label();
this.Label1 = new System.Windows.Forms.Label();
this.txtFilter = new System.Windows.Forms.TextBox();
this.LoadBtn = new System.Windows.Forms.Button();
this.txtData = new System.Windows.Forms.TextBox();
this.dgView = new System.Windows.Forms.DataGridView();
this.btnOK = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dgView)).BeginInit();
this.SuspendLayout();
//
// Label2
//
this.Label2.AutoSize = true;
this.Label2.Location = new System.Drawing.Point(215, 17);
this.Label2.Name = "Label2";
this.Label2.Size = new System.Drawing.Size(78, 13);
this.Label2.TabIndex = 9;
this.Label2.Text = "(optional) Filter:";
//
// Label1
//
this.Label1.AutoSize = true;
this.Label1.Location = new System.Drawing.Point(10, 16);
this.Label1.Name = "Label1";
this.Label1.Size = new System.Drawing.Size(50, 13);
this.Label1.TabIndex = 7;
this.Label1.Text = "Data set:";
//
// txtFilter
//
this.txtFilter.Location = new System.Drawing.Point(299, 13);
this.txtFilter.Name = "txtFilter";
this.txtFilter.Size = new System.Drawing.Size(192, 20);
this.txtFilter.TabIndex = 10;
//
// LoadBtn
//
this.LoadBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.LoadBtn.Location = new System.Drawing.Point(559, 11);
this.LoadBtn.Name = "LoadBtn";
this.LoadBtn.Size = new System.Drawing.Size(86, 23);
this.LoadBtn.TabIndex = 11;
this.LoadBtn.Text = "Update view";
this.LoadBtn.UseVisualStyleBackColor = true;
this.LoadBtn.Click += new System.EventHandler(this.LoadBtn_Click);
//
// txtData
//
this.txtData.Location = new System.Drawing.Point(66, 12);
this.txtData.Name = "txtData";
this.txtData.Size = new System.Drawing.Size(138, 20);
this.txtData.TabIndex = 8;
//
// dgView
//
this.dgView.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.dgView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgView.Location = new System.Drawing.Point(11, 38);
this.dgView.Name = "dgView";
this.dgView.Size = new System.Drawing.Size(637, 259);
this.dgView.TabIndex = 12;
this.dgView.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.OnRowPostPaint);
//
// 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(581, 302);
this.btnOK.Margin = new System.Windows.Forms.Padding(2);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(67, 23);
this.btnOK.TabIndex = 13;
this.btnOK.Text = "Close";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// DataViewerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(659, 334);
this.Controls.Add(this.Label2);
this.Controls.Add(this.Label1);
this.Controls.Add(this.txtFilter);
this.Controls.Add(this.LoadBtn);
this.Controls.Add(this.txtData);
this.Controls.Add(this.dgView);
this.Controls.Add(this.btnOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.MinimumSize = new System.Drawing.Size(500, 350);
this.Name = "DataViewerForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "View SAS data";
((System.ComponentModel.ISupportInitialize)(this.dgView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.Label Label2;
internal System.Windows.Forms.Label Label1;
internal System.Windows.Forms.TextBox txtFilter;
internal System.Windows.Forms.Button LoadBtn;
internal System.Windows.Forms.TextBox txtData;
internal System.Windows.Forms.DataGridView dgView;
internal System.Windows.Forms.Button btnOK;
}
}