-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
104 lines (97 loc) · 4.82 KB
/
Form1.Designer.cs
File metadata and controls
104 lines (97 loc) · 4.82 KB
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
namespace CSharp_ScrollingTextControl
{
partial class Form1
{
/// <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.scrollingTextControl4 = new CSharp_ScrollingTextControl.ScrollingTextControl();
this.scrollingTextControl3 = new CSharp_ScrollingTextControl.ScrollingTextControl();
this.scrollingTextControl2 = new CSharp_ScrollingTextControl.ScrollingTextControl();
this.scrollingTextControl1 = new CSharp_ScrollingTextControl.ScrollingTextControl();
this.SuspendLayout();
//
// scrollingTextControl4
//
this.scrollingTextControl4.BackgroundColor = Direct2D.ColorF.Enum.White;
this.scrollingTextControl4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.scrollingTextControl4.Location = new System.Drawing.Point(29, 460);
this.scrollingTextControl4.Name = "scrollingTextControl4";
this.scrollingTextControl4.Size = new System.Drawing.Size(602, 167);
this.scrollingTextControl4.Speed = 1F;
this.scrollingTextControl4.TabIndex = 3;
this.scrollingTextControl4.TextColor = Direct2D.ColorF.Enum.Black;
//
// scrollingTextControl3
//
this.scrollingTextControl3.BackgroundColor = Direct2D.ColorF.Enum.White;
this.scrollingTextControl3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.scrollingTextControl3.Location = new System.Drawing.Point(29, 357);
this.scrollingTextControl3.Name = "scrollingTextControl3";
this.scrollingTextControl3.Size = new System.Drawing.Size(602, 66);
this.scrollingTextControl3.Speed = 1F;
this.scrollingTextControl3.TabIndex = 2;
this.scrollingTextControl3.TextColor = Direct2D.ColorF.Enum.Black;
//
// scrollingTextControl2
//
this.scrollingTextControl2.BackgroundColor = Direct2D.ColorF.Enum.White;
this.scrollingTextControl2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.scrollingTextControl2.Location = new System.Drawing.Point(29, 146);
this.scrollingTextControl2.Name = "scrollingTextControl2";
this.scrollingTextControl2.Size = new System.Drawing.Size(602, 174);
this.scrollingTextControl2.Speed = 1F;
this.scrollingTextControl2.TabIndex = 1;
this.scrollingTextControl2.TextColor = Direct2D.ColorF.Enum.Black;
//
// scrollingTextControl1
//
this.scrollingTextControl1.BackgroundColor = Direct2D.ColorF.Enum.White;
this.scrollingTextControl1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.scrollingTextControl1.Location = new System.Drawing.Point(29, 31);
this.scrollingTextControl1.Name = "scrollingTextControl1";
this.scrollingTextControl1.Size = new System.Drawing.Size(602, 78);
this.scrollingTextControl1.Speed = 1F;
this.scrollingTextControl1.TabIndex = 0;
this.scrollingTextControl1.TextColor = Direct2D.ColorF.Enum.Black;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(661, 665);
this.Controls.Add(this.scrollingTextControl4);
this.Controls.Add(this.scrollingTextControl3);
this.Controls.Add(this.scrollingTextControl2);
this.Controls.Add(this.scrollingTextControl1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private ScrollingTextControl scrollingTextControl1;
private ScrollingTextControl scrollingTextControl2;
private ScrollingTextControl scrollingTextControl3;
private ScrollingTextControl scrollingTextControl4;
}
}