-
-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathNotificationArea.Designer.cs
More file actions
122 lines (117 loc) · 5.31 KB
/
NotificationArea.Designer.cs
File metadata and controls
122 lines (117 loc) · 5.31 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
namespace XrmToolBox.Extensibility.UserControls
{
partial class NotificationArea
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur de composants
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
this.pbNotif = new System.Windows.Forms.PictureBox();
this.llLearMore = new System.Windows.Forms.LinkLabel();
this.panel1 = new System.Windows.Forms.Panel();
this.llDismiss = new System.Windows.Forms.LinkLabel();
this.lblMessage = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pbNotif)).BeginInit();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// pbNotif
//
this.pbNotif.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.pbNotif.Dock = System.Windows.Forms.DockStyle.Left;
this.pbNotif.Location = new System.Drawing.Point(0, 0);
this.pbNotif.Name = "pbNotif";
this.pbNotif.Size = new System.Drawing.Size(32, 47);
this.pbNotif.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pbNotif.TabIndex = 1;
this.pbNotif.TabStop = false;
//
// llLearMore
//
this.llLearMore.AutoSize = true;
this.llLearMore.Dock = System.Windows.Forms.DockStyle.Top;
this.llLearMore.Location = new System.Drawing.Point(0, 0);
this.llLearMore.Name = "llLearMore";
this.llLearMore.Size = new System.Drawing.Size(84, 20);
this.llLearMore.TabIndex = 4;
this.llLearMore.TabStop = true;
this.llLearMore.Text = "learn more";
this.llLearMore.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llLearnMore_LinkClicked);
//
// panel1
//
this.panel1.Controls.Add(this.llDismiss);
this.panel1.Controls.Add(this.llLearMore);
this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
this.panel1.Location = new System.Drawing.Point(582, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(89, 47);
this.panel1.TabIndex = 5;
//
// llDismiss
//
this.llDismiss.AutoSize = true;
this.llDismiss.Dock = System.Windows.Forms.DockStyle.Top;
this.llDismiss.Location = new System.Drawing.Point(0, 20);
this.llDismiss.Name = "llDismiss";
this.llDismiss.Size = new System.Drawing.Size(61, 20);
this.llDismiss.TabIndex = 5;
this.llDismiss.TabStop = true;
this.llDismiss.Text = "dismiss";
this.llDismiss.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llDismiss_LinkClicked);
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblMessage.Location = new System.Drawing.Point(32, 0);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(82, 20);
this.lblMessage.TabIndex = 6;
this.lblMessage.Text = "[Message]";
this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// NotificationArea
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Info;
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Controls.Add(this.lblMessage);
this.Controls.Add(this.panel1);
this.Controls.Add(this.pbNotif);
this.Name = "NotificationArea";
this.Size = new System.Drawing.Size(671, 47);
((System.ComponentModel.ISupportInitialize)(this.pbNotif)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pbNotif;
private System.Windows.Forms.LinkLabel llLearMore;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.LinkLabel llDismiss;
private System.Windows.Forms.Label lblMessage;
}
}