namespace DemoApp
{
partial class Form1
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.btnExit = new System.Windows.Forms.Button();
this.btnShow = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtTitle = new System.Windows.Forms.TextBox();
this.txtText = new System.Windows.Forms.TextBox();
this.chkIcon = new System.Windows.Forms.CheckBox();
this.chkClose = new System.Windows.Forms.CheckBox();
this.chkMenu = new System.Windows.Forms.CheckBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.txtDelay = new System.Windows.Forms.TextBox();
this.txtInterval = new System.Windows.Forms.TextBox();
this.chkGrip = new System.Windows.Forms.CheckBox();
this.label5 = new System.Windows.Forms.Label();
this.txtPaddingIcon = new System.Windows.Forms.TextBox();
this.chkScroll = new System.Windows.Forms.CheckBox();
this.txtPaddingContent = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.txtPaddingTitle = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.label8 = new System.Windows.Forms.Label();
this.txtAnimationDuration = new System.Windows.Forms.TextBox();
this.popupNotifier1 = new Tulpep.NotificationWindow.PopupNotifier();
this.chkIsRightToLeft = new System.Windows.Forms.CheckBox();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(425, 12);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(75, 23);
this.btnExit.TabIndex = 0;
this.btnExit.Text = "Exit";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// btnShow
//
this.btnShow.Location = new System.Drawing.Point(12, 222);
this.btnShow.Name = "btnShow";
this.btnShow.Size = new System.Drawing.Size(75, 23);
this.btnShow.TabIndex = 1;
this.btnShow.Text = "Show!";
this.btnShow.UseVisualStyleBackColor = true;
this.btnShow.Click += new System.EventHandler(this.btnShow_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Title:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 43);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(33, 13);
this.label2.TabIndex = 3;
this.label2.Text = "Text:";
//
// txtTitle
//
this.txtTitle.Location = new System.Drawing.Point(48, 14);
this.txtTitle.Name = "txtTitle";
this.txtTitle.Size = new System.Drawing.Size(372, 21);
this.txtTitle.TabIndex = 4;
this.txtTitle.Text = "Notification Title";
//
// txtText
//
this.txtText.Location = new System.Drawing.Point(49, 40);
this.txtText.Name = "txtText";
this.txtText.Size = new System.Drawing.Size(371, 21);
this.txtText.TabIndex = 5;
this.txtText.Text = "This is the notification text!";
//
// chkIcon
//
this.chkIcon.AutoSize = true;
this.chkIcon.Checked = true;
this.chkIcon.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkIcon.Location = new System.Drawing.Point(15, 75);
this.chkIcon.Name = "chkIcon";
this.chkIcon.Size = new System.Drawing.Size(74, 17);
this.chkIcon.TabIndex = 6;
this.chkIcon.Text = "Show icon";
this.chkIcon.UseVisualStyleBackColor = true;
//
// chkClose
//
this.chkClose.AutoSize = true;
this.chkClose.Checked = true;
this.chkClose.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkClose.Location = new System.Drawing.Point(15, 98);
this.chkClose.Name = "chkClose";
this.chkClose.Size = new System.Drawing.Size(114, 17);
this.chkClose.TabIndex = 7;
this.chkClose.Text = "Show close button";
this.chkClose.UseVisualStyleBackColor = true;
//
// chkMenu
//
this.chkMenu.AutoSize = true;
this.chkMenu.Checked = true;
this.chkMenu.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkMenu.Location = new System.Drawing.Point(15, 121);
this.chkMenu.Name = "chkMenu";
this.chkMenu.Size = new System.Drawing.Size(114, 17);
this.chkMenu.TabIndex = 8;
this.chkMenu.Text = "Show option menu";
this.chkMenu.UseVisualStyleBackColor = true;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(199, 76);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(62, 13);
this.label4.TabIndex = 9;
this.label4.Text = "Delay [ms]:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(199, 99);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(121, 13);
this.label3.TabIndex = 10;
this.label3.Text = "Animation interval [ms]:";
//
// txtDelay
//
this.txtDelay.Location = new System.Drawing.Point(320, 70);
this.txtDelay.Name = "txtDelay";
this.txtDelay.Size = new System.Drawing.Size(100, 21);
this.txtDelay.TabIndex = 11;
this.txtDelay.Text = "3000";
//
// txtInterval
//
this.txtInterval.Location = new System.Drawing.Point(320, 96);
this.txtInterval.Name = "txtInterval";
this.txtInterval.Size = new System.Drawing.Size(100, 21);
this.txtInterval.TabIndex = 12;
this.txtInterval.Text = "10";
//
// chkGrip
//
this.chkGrip.AutoSize = true;
this.chkGrip.Checked = true;
this.chkGrip.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkGrip.Location = new System.Drawing.Point(15, 144);
this.chkGrip.Name = "chkGrip";
this.chkGrip.Size = new System.Drawing.Size(73, 17);
this.chkGrip.TabIndex = 13;
this.chkGrip.Text = "Show grip";
this.chkGrip.UseVisualStyleBackColor = true;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(199, 151);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(95, 13);
this.label5.TabIndex = 14;
this.label5.Text = "Title padding [px]:";
//
// txtPaddingIcon
//
this.txtPaddingIcon.Location = new System.Drawing.Point(320, 200);
this.txtPaddingIcon.Name = "txtPaddingIcon";
this.txtPaddingIcon.Size = new System.Drawing.Size(100, 21);
this.txtPaddingIcon.TabIndex = 15;
this.txtPaddingIcon.Text = "0";
//
// chkScroll
//
this.chkScroll.AutoSize = true;
this.chkScroll.Checked = true;
this.chkScroll.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkScroll.Location = new System.Drawing.Point(15, 167);
this.chkScroll.Name = "chkScroll";
this.chkScroll.Size = new System.Drawing.Size(82, 17);
this.chkScroll.TabIndex = 16;
this.chkScroll.Text = "Scroll in/out";
this.chkScroll.UseVisualStyleBackColor = true;
//
// txtPaddingContent
//
this.txtPaddingContent.Location = new System.Drawing.Point(320, 174);
this.txtPaddingContent.Name = "txtPaddingContent";
this.txtPaddingContent.Size = new System.Drawing.Size(100, 21);
this.txtPaddingContent.TabIndex = 17;
this.txtPaddingContent.Text = "0";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(199, 203);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(96, 13);
this.label6.TabIndex = 18;
this.label6.Text = "Icon padding [px]:";
//
// txtPaddingTitle
//
this.txtPaddingTitle.Location = new System.Drawing.Point(320, 148);
this.txtPaddingTitle.Name = "txtPaddingTitle";
this.txtPaddingTitle.Size = new System.Drawing.Size(100, 21);
this.txtPaddingTitle.TabIndex = 19;
this.txtPaddingTitle.Text = "0";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(199, 177);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(114, 13);
this.label7.TabIndex = 20;
this.label7.Text = "Content padding [px]:";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem,
this.settingsToolStripMenuItem,
this.exitToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(126, 70);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
this.aboutToolStripMenuItem.Text = "About...";
//
// settingsToolStripMenuItem
//
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
this.settingsToolStripMenuItem.Text = "Settings...";
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
this.exitToolStripMenuItem.Text = "Exit";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(199, 125);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(123, 13);
this.label8.TabIndex = 21;
this.label8.Text = "AnimationDuration [ms]:";
//
// txtAnimationDuration
//
this.txtAnimationDuration.Location = new System.Drawing.Point(320, 122);
this.txtAnimationDuration.Name = "txtAnimationDuration";
this.txtAnimationDuration.Size = new System.Drawing.Size(100, 21);
this.txtAnimationDuration.TabIndex = 22;
this.txtAnimationDuration.Text = "1000";
//
// popupNotifier1
//
this.popupNotifier1.BodyColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
this.popupNotifier1.ContentFont = new System.Drawing.Font("Tahoma", 8F);
this.popupNotifier1.ContentText = null;
this.popupNotifier1.GradientPower = 300;
this.popupNotifier1.HeaderHeight = 20;
this.popupNotifier1.Image = null;
this.popupNotifier1.IsRightToLeft = false;
this.popupNotifier1.OptionsMenu = this.contextMenuStrip1;
this.popupNotifier1.Size = new System.Drawing.Size(400, 100);
this.popupNotifier1.TitleFont = new System.Drawing.Font("Segoe UI", 9F);
this.popupNotifier1.TitleText = null;
//
// chkIsRightToLeft
//
this.chkIsRightToLeft.AutoSize = true;
this.chkIsRightToLeft.Location = new System.Drawing.Point(12, 190);
this.chkIsRightToLeft.Name = "chkIsRightToLeft";
this.chkIsRightToLeft.Size = new System.Drawing.Size(153, 17);
this.chkIsRightToLeft.TabIndex = 23;
this.chkIsRightToLeft.Text = "Right to Left/ راست به چپ";
this.chkIsRightToLeft.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(512, 257);
this.Controls.Add(this.chkIsRightToLeft);
this.Controls.Add(this.txtPaddingTitle);
this.Controls.Add(this.label7);
this.Controls.Add(this.txtAnimationDuration);
this.Controls.Add(this.label8);
this.Controls.Add(this.chkScroll);
this.Controls.Add(this.txtPaddingContent);
this.Controls.Add(this.txtPaddingIcon);
this.Controls.Add(this.label6);
this.Controls.Add(this.chkGrip);
this.Controls.Add(this.label5);
this.Controls.Add(this.txtDelay);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtInterval);
this.Controls.Add(this.label4);
this.Controls.Add(this.chkMenu);
this.Controls.Add(this.chkClose);
this.Controls.Add(this.chkIcon);
this.Controls.Add(this.txtText);
this.Controls.Add(this.txtTitle);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnShow);
this.Controls.Add(this.btnExit);
this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "NotificationWindow Demo";
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.Button btnShow;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtTitle;
private System.Windows.Forms.TextBox txtText;
private System.Windows.Forms.CheckBox chkIcon;
private System.Windows.Forms.CheckBox chkClose;
private System.Windows.Forms.CheckBox chkMenu;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtDelay;
private System.Windows.Forms.TextBox txtInterval;
private System.Windows.Forms.CheckBox chkGrip;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtPaddingIcon;
private System.Windows.Forms.CheckBox chkScroll;
private System.Windows.Forms.TextBox txtPaddingContent;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox txtPaddingTitle;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox txtAnimationDuration;
private Tulpep.NotificationWindow.PopupNotifier popupNotifier1;
private System.Windows.Forms.CheckBox chkIsRightToLeft;
}
}