📄 mainform.designer.cs
字号:
namespace UsingNotification
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.m_notification = new Microsoft.WindowsCE.Forms.Notification();
this.m_lblCaption = new System.Windows.Forms.Label();
this.m_txtCaption = new System.Windows.Forms.TextBox();
this.m_lblText = new System.Windows.Forms.Label();
this.m_txtText = new System.Windows.Forms.TextBox();
this.m_lblInitialDuration = new System.Windows.Forms.Label();
this.m_numDuration = new System.Windows.Forms.NumericUpDown();
this.m_chkCritical = new System.Windows.Forms.CheckBox();
this.m_btnDisplay = new System.Windows.Forms.Button();
this.m_btnHide = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// m_notification
//
this.m_notification.Icon = ((System.Drawing.Icon)(resources.GetObject("m_notification.Icon")));
this.m_notification.Text = "notification1";
//
// m_lblCaption
//
this.m_lblCaption.Location = new System.Drawing.Point(13, 9);
this.m_lblCaption.Name = "m_lblCaption";
this.m_lblCaption.Size = new System.Drawing.Size(60, 20);
this.m_lblCaption.Text = "Caption:";
//
// m_txtCaption
//
this.m_txtCaption.Location = new System.Drawing.Point(13, 32);
this.m_txtCaption.Name = "m_txtCaption";
this.m_txtCaption.Size = new System.Drawing.Size(212, 21);
this.m_txtCaption.TabIndex = 1;
this.m_txtCaption.Text = "Caption";
//
// m_lblText
//
this.m_lblText.Location = new System.Drawing.Point(13, 56);
this.m_lblText.Name = "m_lblText";
this.m_lblText.Size = new System.Drawing.Size(60, 20);
this.m_lblText.Text = "Text:";
//
// m_txtText
//
this.m_txtText.Location = new System.Drawing.Point(13, 79);
this.m_txtText.Name = "m_txtText";
this.m_txtText.Size = new System.Drawing.Size(212, 21);
this.m_txtText.TabIndex = 3;
this.m_txtText.Text = "Some text here.";
//
// m_lblInitialDuration
//
this.m_lblInitialDuration.Location = new System.Drawing.Point(13, 103);
this.m_lblInitialDuration.Name = "m_lblInitialDuration";
this.m_lblInitialDuration.Size = new System.Drawing.Size(100, 20);
this.m_lblInitialDuration.Text = "Initial Duration:";
//
// m_numDuration
//
this.m_numDuration.Location = new System.Drawing.Point(13, 126);
this.m_numDuration.Name = "m_numDuration";
this.m_numDuration.Size = new System.Drawing.Size(212, 22);
this.m_numDuration.TabIndex = 5;
this.m_numDuration.Value = new decimal(new int[] {
10,
0,
0,
0});
//
// m_chkCritical
//
this.m_chkCritical.Location = new System.Drawing.Point(13, 154);
this.m_chkCritical.Name = "m_chkCritical";
this.m_chkCritical.Size = new System.Drawing.Size(212, 20);
this.m_chkCritical.TabIndex = 6;
this.m_chkCritical.Text = "This Notification Is Critical";
//
// m_btnDisplay
//
this.m_btnDisplay.Location = new System.Drawing.Point(83, 180);
this.m_btnDisplay.Name = "m_btnDisplay";
this.m_btnDisplay.Size = new System.Drawing.Size(142, 20);
this.m_btnDisplay.TabIndex = 7;
this.m_btnDisplay.Text = "Display Notification";
this.m_btnDisplay.Click += new System.EventHandler(this.m_btnDisplay_Click);
//
// m_btnHide
//
this.m_btnHide.Location = new System.Drawing.Point(83, 206);
this.m_btnHide.Name = "m_btnHide";
this.m_btnHide.Size = new System.Drawing.Size(142, 20);
this.m_btnHide.TabIndex = 7;
this.m_btnHide.Text = "Hide Notification";
this.m_btnHide.Click += new System.EventHandler(this.m_btnHide_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.m_btnHide);
this.Controls.Add(this.m_btnDisplay);
this.Controls.Add(this.m_chkCritical);
this.Controls.Add(this.m_numDuration);
this.Controls.Add(this.m_lblInitialDuration);
this.Controls.Add(this.m_txtText);
this.Controls.Add(this.m_lblText);
this.Controls.Add(this.m_txtCaption);
this.Controls.Add(this.m_lblCaption);
this.Menu = this.mainMenu1;
this.Name = "MainForm";
this.Text = "Notification";
this.ResumeLayout(false);
}
#endregion
private Microsoft.WindowsCE.Forms.Notification m_notification;
private System.Windows.Forms.Label m_lblCaption;
private System.Windows.Forms.TextBox m_txtCaption;
private System.Windows.Forms.Label m_lblText;
private System.Windows.Forms.TextBox m_txtText;
private System.Windows.Forms.Label m_lblInitialDuration;
private System.Windows.Forms.NumericUpDown m_numDuration;
private System.Windows.Forms.CheckBox m_chkCritical;
private System.Windows.Forms.Button m_btnDisplay;
private System.Windows.Forms.Button m_btnHide;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -