-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrumAlert.Designer.cs
123 lines (117 loc) · 5.15 KB
/
BrumAlert.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
namespace BrumCustomAlerts
{
partial class BrumAlert
{
/// <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.timerClose = new System.Windows.Forms.Timer(this.components);
this.timerShow = new System.Windows.Forms.Timer(this.components);
this.timerClosing = new System.Windows.Forms.Timer(this.components);
this.lblMessage = new System.Windows.Forms.Label();
this.btnClose = new System.Windows.Forms.Button();
this.pbMain = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pbMain)).BeginInit();
this.SuspendLayout();
//
// timerClose
//
this.timerClose.Tick += new System.EventHandler(this.timerClose_Tick);
//
// timerShow
//
this.timerShow.Enabled = true;
this.timerShow.Interval = 1;
this.timerShow.Tick += new System.EventHandler(this.timerShow_Tick);
//
// timerClosing
//
this.timerClosing.Interval = 1;
this.timerClosing.Tick += new System.EventHandler(this.timerClosing_Tick);
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblMessage.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblMessage.Location = new System.Drawing.Point(55, 19);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(61, 22);
this.lblMessage.TabIndex = 1;
this.lblMessage.Text = "label1";
//
// btnClose
//
this.btnClose.BackColor = System.Drawing.Color.Red;
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnClose.ForeColor = System.Drawing.Color.Crimson;
this.btnClose.Image = global::BrumCustomAlerts.Properties.Resources.clear_mini_white;
this.btnClose.Location = new System.Drawing.Point(563, 4);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(25, 25);
this.btnClose.TabIndex = 8;
this.btnClose.UseVisualStyleBackColor = false;
this.btnClose.Click += new System.EventHandler(this.OnClose);
//
// pbMain
//
this.pbMain.Location = new System.Drawing.Point(12, 12);
this.pbMain.Name = "pbMain";
this.pbMain.Size = new System.Drawing.Size(37, 36);
this.pbMain.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbMain.TabIndex = 0;
this.pbMain.TabStop = false;
//
// BrumAlert
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LimeGreen;
this.ClientSize = new System.Drawing.Size(594, 60);
this.ControlBox = false;
this.Controls.Add(this.btnClose);
this.Controls.Add(this.lblMessage);
this.Controls.Add(this.pbMain);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "BrumAlert";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.Text = "alert";
this.Load += new System.EventHandler(this.alert_Load);
((System.ComponentModel.ISupportInitialize)(this.pbMain)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.Timer timerClose;
internal System.Windows.Forms.Timer timerShow;
internal System.Windows.Forms.Timer timerClosing;
internal System.Windows.Forms.PictureBox pbMain;
internal System.Windows.Forms.Label lblMessage;
internal System.Windows.Forms.Button btnClose;
}
}