Toasts – Rev 17
?pathlinks?
namespace Toasts
{
partial class ToastForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ToastForm));
this.labelTitle = new System.Windows.Forms.Label();
this.imageBox = new System.Windows.Forms.PictureBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.labelBody = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.imageBox)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
this.SuspendLayout();
//
// labelTitle
//
this.labelTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.labelTitle.AutoEllipsis = true;
this.labelTitle.BackColor = System.Drawing.Color.Transparent;
this.labelTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelTitle.ForeColor = System.Drawing.Color.Black;
this.labelTitle.Location = new System.Drawing.Point(3, 6);
this.labelTitle.Name = "labelTitle";
this.labelTitle.Size = new System.Drawing.Size(268, 15);
this.labelTitle.TabIndex = 0;
this.labelTitle.Text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
this.labelTitle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.labelTitle.Click += new System.EventHandler(this.Toast_Click);
//
// imageBox
//
this.imageBox.Anchor = System.Windows.Forms.AnchorStyles.None;
this.imageBox.Image = global::Toasts.Properties.Resources.was;
this.imageBox.Location = new System.Drawing.Point(10, 10);
this.imageBox.MaximumSize = new System.Drawing.Size(100, 100);
this.imageBox.MinimumSize = new System.Drawing.Size(100, 100);
this.imageBox.Name = "imageBox";
this.imageBox.Size = new System.Drawing.Size(100, 100);
this.imageBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.imageBox.TabIndex = 1;
this.imageBox.TabStop = false;
this.imageBox.Click += new System.EventHandler(this.Toast_Click);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.BackColor = System.Drawing.Color.Transparent;
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.imageBox, 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());
this.tableLayoutPanel1.Size = new System.Drawing.Size(400, 120);
this.tableLayoutPanel1.TabIndex = 4;
this.tableLayoutPanel1.Click += new System.EventHandler(this.Toast_Click);
//
// tableLayoutPanel4
//
this.tableLayoutPanel4.ColumnCount = 1;
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel4.Controls.Add(this.labelBody, 0, 1);
this.tableLayoutPanel4.Controls.Add(this.labelTitle, 0, 0);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location = new System.Drawing.Point(123, 3);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 2;
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 75F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(274, 114);
this.tableLayoutPanel4.TabIndex = 0;
this.tableLayoutPanel4.Click += new System.EventHandler(this.Toast_Click);
//
// labelBody
//
this.labelBody.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.labelBody.AutoEllipsis = true;
this.labelBody.BackColor = System.Drawing.Color.Transparent;
this.labelBody.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelBody.ForeColor = System.Drawing.Color.Black;
this.labelBody.Location = new System.Drawing.Point(3, 28);
this.labelBody.Name = "labelBody";
this.labelBody.Size = new System.Drawing.Size(268, 86);
this.labelBody.TabIndex = 0;
this.labelBody.Text = resources.GetString("labelBody.Text");
this.labelBody.Click += new System.EventHandler(this.Toast_Click);
//
// ToastForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.BackgroundImage = global::Toasts.Properties.Resources.background;
this.ClientSize = new System.Drawing.Size(400, 120);
this.ControlBox = false;
this.Controls.Add(this.tableLayoutPanel1);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "ToastForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Notification_FormClosed);
this.Load += new System.EventHandler(this.Notification_Load);
this.Shown += new System.EventHandler(this.Notification_Shown);
this.Click += new System.EventHandler(this.Toast_Click);
((System.ComponentModel.ISupportInitialize)(this.imageBox)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel4.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label labelTitle;
private System.Windows.Forms.PictureBox imageBox;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
private System.Windows.Forms.Label labelBody;
}
}
Generated by GNU Enscript 1.6.5.90.