-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathListCourses.Designer.cs
99 lines (94 loc) · 4.05 KB
/
ListCourses.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
namespace Coders_Space
{
partial class ListCourses
{
/// <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()
{
Guna.UI2.WinForms.Suite.CustomizableEdges customizableEdges1 = new Guna.UI2.WinForms.Suite.CustomizableEdges();
Guna.UI2.WinForms.Suite.CustomizableEdges customizableEdges2 = new Guna.UI2.WinForms.Suite.CustomizableEdges();
picture = new PictureBox();
courseTitle = new Guna.UI2.WinForms.Guna2HtmlLabel();
viewCourseBTN = new Guna.UI2.WinForms.Guna2Button();
((System.ComponentModel.ISupportInitialize)picture).BeginInit();
SuspendLayout();
//
// picture
//
picture.BackColor = Color.Transparent;
picture.Image = Properties.Resources.no_image_avaiable;
picture.Location = new Point(3, 5);
picture.Name = "picture";
picture.Size = new Size(184, 125);
picture.SizeMode = PictureBoxSizeMode.Zoom;
picture.TabIndex = 6;
picture.TabStop = false;
//
// courseTitle
//
courseTitle.BackColor = Color.Transparent;
courseTitle.Font = new Font("Times New Roman", 14.25F, FontStyle.Bold | FontStyle.Italic, GraphicsUnit.Point);
courseTitle.Location = new Point(13, 142);
courseTitle.Name = "courseTitle";
courseTitle.Size = new Size(166, 24);
courseTitle.TabIndex = 7;
courseTitle.Text = "Complete C# Course";
//
// viewCourseBTN
//
viewCourseBTN.BorderRadius = 20;
viewCourseBTN.CustomizableEdges = customizableEdges1;
viewCourseBTN.DisabledState.BorderColor = Color.DarkGray;
viewCourseBTN.DisabledState.CustomBorderColor = Color.DarkGray;
viewCourseBTN.DisabledState.FillColor = Color.FromArgb(169, 169, 169);
viewCourseBTN.DisabledState.ForeColor = Color.FromArgb(141, 141, 141);
viewCourseBTN.FillColor = Color.FromArgb(0, 64, 221);
viewCourseBTN.Font = new Font("Times New Roman", 14.25F, FontStyle.Bold | FontStyle.Italic, GraphicsUnit.Point);
viewCourseBTN.ForeColor = Color.White;
viewCourseBTN.Location = new Point(6, 174);
viewCourseBTN.Name = "viewCourseBTN";
viewCourseBTN.ShadowDecoration.CustomizableEdges = customizableEdges2;
viewCourseBTN.Size = new Size(180, 45);
viewCourseBTN.TabIndex = 8;
viewCourseBTN.Text = "View Course";
//
// ListCourses
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.WhiteSmoke;
Controls.Add(picture);
Controls.Add(courseTitle);
Controls.Add(viewCourseBTN);
Name = "ListCourses";
Size = new Size(190, 225);
((System.ComponentModel.ISupportInitialize)picture).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private PictureBox picture;
private Guna.UI2.WinForms.Guna2HtmlLabel courseTitle;
private Guna.UI2.WinForms.Guna2Button viewCourseBTN;
}
}