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

Windows Mobile

开发平台:

C#

  1. namespace CalculateSum
  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. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  30. this.m_txtTarget = new System.Windows.Forms.TextBox();
  31. this.m_lblCalculate = new System.Windows.Forms.Label();
  32. this.m_btnCalculate = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. // 
  35. // m_txtTarget
  36. // 
  37. this.m_txtTarget.Location = new System.Drawing.Point(97, 3);
  38. this.m_txtTarget.Name = "m_txtTarget";
  39. this.m_txtTarget.Size = new System.Drawing.Size(140, 21);
  40. this.m_txtTarget.TabIndex = 0;
  41. // 
  42. // m_lblCalculate
  43. // 
  44. this.m_lblCalculate.Location = new System.Drawing.Point(4, 4);
  45. this.m_lblCalculate.Name = "m_lblCalculate";
  46. this.m_lblCalculate.Size = new System.Drawing.Size(87, 20);
  47. this.m_lblCalculate.Text = "Calculate 1 to:";
  48. // 
  49. // m_btnCalculate
  50. // 
  51. this.m_btnCalculate.Location = new System.Drawing.Point(164, 31);
  52. this.m_btnCalculate.Name = "m_btnCalculate";
  53. this.m_btnCalculate.Size = new System.Drawing.Size(72, 20);
  54. this.m_btnCalculate.TabIndex = 2;
  55. this.m_btnCalculate.Text = "Calculate";
  56. this.m_btnCalculate.Click += new System.EventHandler(this.m_btnCalculate_Click);
  57. // 
  58. // MainForm
  59. // 
  60. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  61. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  62. this.AutoScroll = true;
  63. this.ClientSize = new System.Drawing.Size(240, 268);
  64. this.Controls.Add(this.m_btnCalculate);
  65. this.Controls.Add(this.m_lblCalculate);
  66. this.Controls.Add(this.m_txtTarget);
  67. this.Menu = this.mainMenu1;
  68. this.Name = "MainForm";
  69. this.Text = "Calculate Sum";
  70. this.ResumeLayout(false);
  71. }
  72. #endregion
  73. private System.Windows.Forms.TextBox m_txtTarget;
  74. private System.Windows.Forms.Label m_lblCalculate;
  75. private System.Windows.Forms.Button m_btnCalculate;
  76. }
  77. }