-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOutputForm.Designer.cs
121 lines (115 loc) · 5.86 KB
/
OutputForm.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
namespace Student_Registration_Form
{
partial class OutputForm
{
/// <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.output_label = new System.Windows.Forms.Label();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.panel1 = new System.Windows.Forms.Panel();
this.close_button = new Guna.UI2.WinForms.Guna2Button();
this.tableLayoutPanel1.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// output_label
//
this.output_label.BackColor = System.Drawing.Color.Transparent;
this.output_label.Dock = System.Windows.Forms.DockStyle.Top;
this.output_label.Font = new System.Drawing.Font("Gadugi", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.output_label.ForeColor = System.Drawing.Color.White;
this.output_label.Location = new System.Drawing.Point(0, 0);
this.output_label.Name = "output_label";
this.output_label.Size = new System.Drawing.Size(233, 158);
this.output_label.TabIndex = 0;
this.output_label.Text = "label1";
this.output_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(74)))), ((int)(((byte)(127)))));
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(290, 238);
this.tableLayoutPanel1.TabIndex = 1;
//
// panel1
//
this.panel1.Anchor = System.Windows.Forms.AnchorStyles.None;
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.Controls.Add(this.close_button);
this.panel1.Controls.Add(this.output_label);
this.panel1.Location = new System.Drawing.Point(28, 16);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(233, 206);
this.panel1.TabIndex = 0;
//
// close_button
//
this.close_button.BorderRadius = 8;
this.close_button.CheckedState.Parent = this.close_button;
this.close_button.Cursor = System.Windows.Forms.Cursors.Hand;
this.close_button.CustomImages.Parent = this.close_button;
this.close_button.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(100)))), ((int)(((byte)(149)))));
this.close_button.Font = new System.Drawing.Font("Gadugi", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.close_button.ForeColor = System.Drawing.Color.White;
this.close_button.HoverState.Parent = this.close_button;
this.close_button.Location = new System.Drawing.Point(71, 166);
this.close_button.Name = "close_button";
this.close_button.ShadowDecoration.Parent = this.close_button;
this.close_button.Size = new System.Drawing.Size(90, 34);
this.close_button.TabIndex = 1;
this.close_button.Text = "Close";
this.close_button.Click += new System.EventHandler(this.close_button_Click);
//
// OutputForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(290, 238);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.Name = "OutputForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Output Form";
this.Load += new System.EventHandler(this.OutputForm_Load);
this.tableLayoutPanel1.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label output_label;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Panel panel1;
private Guna.UI2.WinForms.Guna2Button close_button;
}
}