-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormLog.Designer.cs
136 lines (130 loc) · 5.68 KB
/
FormLog.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
namespace PBioManager
{
partial class FormLog
{
/// <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.components = new System.ComponentModel.Container();
this.lblText = new System.Windows.Forms.Label();
this.lblDate = new System.Windows.Forms.Label();
this.lblLabelDate = new System.Windows.Forms.Label();
this.txtText = new System.Windows.Forms.TextBox();
this.btnClose = new System.Windows.Forms.Button();
this.webappDBDataSet = new PBioManager.WebappDBDataSet();
this.logTableAdapter = new PBioManager.WebappDBDataSetTableAdapters.LogTableAdapter();
this.logBindingSource = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.webappDBDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.logBindingSource)).BeginInit();
this.SuspendLayout();
//
// lblText
//
this.lblText.AutoSize = true;
this.lblText.Location = new System.Drawing.Point(8, 42);
this.lblText.Name = "lblText";
this.lblText.Size = new System.Drawing.Size(28, 13);
this.lblText.TabIndex = 1;
this.lblText.Text = "Text";
//
// lblDate
//
this.lblDate.AutoSize = true;
this.lblDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblDate.Location = new System.Drawing.Point(7, 22);
this.lblDate.Name = "lblDate";
this.lblDate.Size = new System.Drawing.Size(47, 20);
this.lblDate.TabIndex = 3;
this.lblDate.Text = "None";
//
// lblLabelDate
//
this.lblLabelDate.AutoSize = true;
this.lblLabelDate.Location = new System.Drawing.Point(8, 9);
this.lblLabelDate.Name = "lblLabelDate";
this.lblLabelDate.Size = new System.Drawing.Size(49, 13);
this.lblLabelDate.TabIndex = 4;
this.lblLabelDate.Text = "Datetime";
//
// txtText
//
this.txtText.Location = new System.Drawing.Point(11, 58);
this.txtText.Multiline = true;
this.txtText.Name = "txtText";
this.txtText.ReadOnly = true;
this.txtText.Size = new System.Drawing.Size(260, 163);
this.txtText.TabIndex = 7;
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(196, 227);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 10;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// webappDBDataSet
//
this.webappDBDataSet.DataSetName = "WebappDBDataSet";
this.webappDBDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// logTableAdapter
//
this.logTableAdapter.ClearBeforeFill = true;
//
// logBindingSource
//
this.logBindingSource.DataMember = "Log";
this.logBindingSource.DataSource = this.webappDBDataSet;
//
// FormLog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.txtText);
this.Controls.Add(this.lblLabelDate);
this.Controls.Add(this.lblDate);
this.Controls.Add(this.lblText);
this.Name = "FormLog";
this.Text = "Project";
this.Load += new System.EventHandler(this.FormLog_Load);
((System.ComponentModel.ISupportInitialize)(this.webappDBDataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.logBindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblText;
private System.Windows.Forms.Label lblDate;
private System.Windows.Forms.Label lblLabelDate;
private System.Windows.Forms.TextBox txtText;
private WebappDBDataSet webappDBDataSet;
private System.Windows.Forms.Button btnClose;
private WebappDBDataSetTableAdapters.LogTableAdapter logTableAdapter;
private System.Windows.Forms.BindingSource logBindingSource;
}
}