-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSongListControl.Designer.cs
More file actions
124 lines (118 loc) · 6.08 KB
/
SongListControl.Designer.cs
File metadata and controls
124 lines (118 loc) · 6.08 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
namespace ComparedLyric
{
partial class SongListControl
{
/// <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 Component 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.panel1 = new System.Windows.Forms.Panel();
this.pb_SongListIcon = new System.Windows.Forms.PictureBox();
this.lbl_SongListTime = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.lbl_SongListTitle = new System.Windows.Forms.Label();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pb_SongListIcon)).BeginInit();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(100)))), ((int)(((byte)(189)))));
this.panel1.Controls.Add(this.pb_SongListIcon);
this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(87, 85);
this.panel1.TabIndex = 0;
this.panel1.MouseEnter += new System.EventHandler(this.ucRequest_MouseEnter);
this.panel1.MouseLeave += new System.EventHandler(this.ucRequest_MouseLeave);
//
// pb_SongListIcon
//
this.pb_SongListIcon.Location = new System.Drawing.Point(6, 6);
this.pb_SongListIcon.Name = "pb_SongListIcon";
this.pb_SongListIcon.Size = new System.Drawing.Size(75, 75);
this.pb_SongListIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pb_SongListIcon.TabIndex = 0;
this.pb_SongListIcon.TabStop = false;
this.pb_SongListIcon.MouseEnter += new System.EventHandler(this.ucRequest_MouseEnter);
this.pb_SongListIcon.MouseLeave += new System.EventHandler(this.ucRequest_MouseLeave);
//
// lbl_SongListTime
//
this.lbl_SongListTime.AutoSize = true;
this.lbl_SongListTime.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(100)))), ((int)(((byte)(189)))));
this.lbl_SongListTime.Location = new System.Drawing.Point(93, 47);
this.lbl_SongListTime.Name = "lbl_SongListTime";
this.lbl_SongListTime.Size = new System.Drawing.Size(34, 13);
this.lbl_SongListTime.TabIndex = 2;
this.lbl_SongListTime.Text = "00:00";
this.lbl_SongListTime.MouseEnter += new System.EventHandler(this.ucRequest_MouseEnter);
this.lbl_SongListTime.MouseLeave += new System.EventHandler(this.ucRequest_MouseLeave);
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.lbl_SongListTitle);
this.flowLayoutPanel1.Location = new System.Drawing.Point(90, 14);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(171, 31);
this.flowLayoutPanel1.TabIndex = 3;
//
// lbl_SongListTitle
//
this.lbl_SongListTitle.AutoSize = true;
this.lbl_SongListTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lbl_SongListTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(100)))), ((int)(((byte)(189)))));
this.lbl_SongListTitle.Location = new System.Drawing.Point(3, 0);
this.lbl_SongListTitle.Name = "lbl_SongListTitle";
this.lbl_SongListTitle.Size = new System.Drawing.Size(32, 13);
this.lbl_SongListTitle.TabIndex = 2;
this.lbl_SongListTitle.Text = "Title";
//
// SongListControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(233)))), ((int)(((byte)(238)))));
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.lbl_SongListTime);
this.Controls.Add(this.panel1);
this.Name = "SongListControl";
this.Size = new System.Drawing.Size(270, 85);
this.MouseEnter += new System.EventHandler(this.ucRequest_MouseEnter);
this.MouseLeave += new System.EventHandler(this.ucRequest_MouseLeave);
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pb_SongListIcon)).EndInit();
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.PictureBox pb_SongListIcon;
private System.Windows.Forms.Label lbl_SongListTime;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Label lbl_SongListTitle;
}
}