MainForm.Designer.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:6k
源码类别:

Windows Mobile

开发平台:

C#

  1. namespace UsingNotification
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. private System.Windows.Forms.MainMenu mainMenu1;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if(disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  31. this.m_notification = new Microsoft.WindowsCE.Forms.Notification();
  32. this.m_lblCaption = new System.Windows.Forms.Label();
  33. this.m_txtCaption = new System.Windows.Forms.TextBox();
  34. this.m_lblText = new System.Windows.Forms.Label();
  35. this.m_txtText = new System.Windows.Forms.TextBox();
  36. this.m_lblInitialDuration = new System.Windows.Forms.Label();
  37. this.m_numDuration = new System.Windows.Forms.NumericUpDown();
  38. this.m_chkCritical = new System.Windows.Forms.CheckBox();
  39. this.m_btnDisplay = new System.Windows.Forms.Button();
  40. this.m_btnHide = new System.Windows.Forms.Button();
  41. this.SuspendLayout();
  42. // 
  43. // m_notification
  44. // 
  45. this.m_notification.Icon = ((System.Drawing.Icon)(resources.GetObject("m_notification.Icon")));
  46. this.m_notification.Text = "notification1";
  47. // 
  48. // m_lblCaption
  49. // 
  50. this.m_lblCaption.Location = new System.Drawing.Point(13, 9);
  51. this.m_lblCaption.Name = "m_lblCaption";
  52. this.m_lblCaption.Size = new System.Drawing.Size(60, 20);
  53. this.m_lblCaption.Text = "Caption:";
  54. // 
  55. // m_txtCaption
  56. // 
  57. this.m_txtCaption.Location = new System.Drawing.Point(13, 32);
  58. this.m_txtCaption.Name = "m_txtCaption";
  59. this.m_txtCaption.Size = new System.Drawing.Size(212, 21);
  60. this.m_txtCaption.TabIndex = 1;
  61. this.m_txtCaption.Text = "Caption";
  62. // 
  63. // m_lblText
  64. // 
  65. this.m_lblText.Location = new System.Drawing.Point(13, 56);
  66. this.m_lblText.Name = "m_lblText";
  67. this.m_lblText.Size = new System.Drawing.Size(60, 20);
  68. this.m_lblText.Text = "Text:";
  69. // 
  70. // m_txtText
  71. // 
  72. this.m_txtText.Location = new System.Drawing.Point(13, 79);
  73. this.m_txtText.Name = "m_txtText";
  74. this.m_txtText.Size = new System.Drawing.Size(212, 21);
  75. this.m_txtText.TabIndex = 3;
  76. this.m_txtText.Text = "Some text here.";
  77. // 
  78. // m_lblInitialDuration
  79. // 
  80. this.m_lblInitialDuration.Location = new System.Drawing.Point(13, 103);
  81. this.m_lblInitialDuration.Name = "m_lblInitialDuration";
  82. this.m_lblInitialDuration.Size = new System.Drawing.Size(100, 20);
  83. this.m_lblInitialDuration.Text = "Initial Duration:";
  84. // 
  85. // m_numDuration
  86. // 
  87. this.m_numDuration.Location = new System.Drawing.Point(13, 126);
  88. this.m_numDuration.Name = "m_numDuration";
  89. this.m_numDuration.Size = new System.Drawing.Size(212, 22);
  90. this.m_numDuration.TabIndex = 5;
  91. this.m_numDuration.Value = new decimal(new int[] {
  92.             10,
  93.             0,
  94.             0,
  95.             0});
  96. // 
  97. // m_chkCritical
  98. // 
  99. this.m_chkCritical.Location = new System.Drawing.Point(13, 154);
  100. this.m_chkCritical.Name = "m_chkCritical";
  101. this.m_chkCritical.Size = new System.Drawing.Size(212, 20);
  102. this.m_chkCritical.TabIndex = 6;
  103. this.m_chkCritical.Text = "This Notification Is Critical";
  104. // 
  105. // m_btnDisplay
  106. // 
  107. this.m_btnDisplay.Location = new System.Drawing.Point(83, 180);
  108. this.m_btnDisplay.Name = "m_btnDisplay";
  109. this.m_btnDisplay.Size = new System.Drawing.Size(142, 20);
  110. this.m_btnDisplay.TabIndex = 7;
  111. this.m_btnDisplay.Text = "Display Notification";
  112. this.m_btnDisplay.Click += new System.EventHandler(this.m_btnDisplay_Click);
  113. // 
  114. // m_btnHide
  115. // 
  116. this.m_btnHide.Location = new System.Drawing.Point(83, 206);
  117. this.m_btnHide.Name = "m_btnHide";
  118. this.m_btnHide.Size = new System.Drawing.Size(142, 20);
  119. this.m_btnHide.TabIndex = 7;
  120. this.m_btnHide.Text = "Hide Notification";
  121. this.m_btnHide.Click += new System.EventHandler(this.m_btnHide_Click);
  122. // 
  123. // MainForm
  124. // 
  125. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  126. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  127. this.AutoScroll = true;
  128. this.ClientSize = new System.Drawing.Size(240, 268);
  129. this.Controls.Add(this.m_btnHide);
  130. this.Controls.Add(this.m_btnDisplay);
  131. this.Controls.Add(this.m_chkCritical);
  132. this.Controls.Add(this.m_numDuration);
  133. this.Controls.Add(this.m_lblInitialDuration);
  134. this.Controls.Add(this.m_txtText);
  135. this.Controls.Add(this.m_lblText);
  136. this.Controls.Add(this.m_txtCaption);
  137. this.Controls.Add(this.m_lblCaption);
  138. this.Menu = this.mainMenu1;
  139. this.Name = "MainForm";
  140. this.Text = "Notification";
  141. this.ResumeLayout(false);
  142. }
  143. #endregion
  144. private Microsoft.WindowsCE.Forms.Notification m_notification;
  145. private System.Windows.Forms.Label m_lblCaption;
  146. private System.Windows.Forms.TextBox m_txtCaption;
  147. private System.Windows.Forms.Label m_lblText;
  148. private System.Windows.Forms.TextBox m_txtText;
  149. private System.Windows.Forms.Label m_lblInitialDuration;
  150. private System.Windows.Forms.NumericUpDown m_numDuration;
  151. private System.Windows.Forms.CheckBox m_chkCritical;
  152. private System.Windows.Forms.Button m_btnDisplay;
  153. private System.Windows.Forms.Button m_btnHide;
  154. }
  155. }