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

Windows Mobile

开发平台:

C#

  1. namespace SendingSms
  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. m_outlookSession.Dispose();
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  31. this.m_lblReceiver = new System.Windows.Forms.Label();
  32. this.m_txtReceiver = new System.Windows.Forms.TextBox();
  33. this.m_lblMessage = new System.Windows.Forms.Label();
  34. this.m_txtMesage = new System.Windows.Forms.TextBox();
  35. this.m_btnSend = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. // 
  38. // m_lblReceiver
  39. // 
  40. this.m_lblReceiver.Location = new System.Drawing.Point(15, 11);
  41. this.m_lblReceiver.Name = "m_lblReceiver";
  42. this.m_lblReceiver.Size = new System.Drawing.Size(213, 20);
  43. this.m_lblReceiver.Text = "Receiver Number:";
  44. // 
  45. // m_txtReceiver
  46. // 
  47. this.m_txtReceiver.Location = new System.Drawing.Point(15, 35);
  48. this.m_txtReceiver.Name = "m_txtReceiver";
  49. this.m_txtReceiver.Size = new System.Drawing.Size(213, 21);
  50. this.m_txtReceiver.TabIndex = 1;
  51. // 
  52. // m_lblMessage
  53. // 
  54. this.m_lblMessage.Location = new System.Drawing.Point(15, 63);
  55. this.m_lblMessage.Name = "m_lblMessage";
  56. this.m_lblMessage.Size = new System.Drawing.Size(213, 20);
  57. this.m_lblMessage.Text = "Message:";
  58. // 
  59. // m_txtMesage
  60. // 
  61. this.m_txtMesage.AcceptsReturn = true;
  62. this.m_txtMesage.AcceptsTab = true;
  63. this.m_txtMesage.Location = new System.Drawing.Point(15, 87);
  64. this.m_txtMesage.Multiline = true;
  65. this.m_txtMesage.Name = "m_txtMesage";
  66. this.m_txtMesage.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  67. this.m_txtMesage.Size = new System.Drawing.Size(213, 132);
  68. this.m_txtMesage.TabIndex = 3;
  69. // 
  70. // m_btnSend
  71. // 
  72. this.m_btnSend.Location = new System.Drawing.Point(156, 231);
  73. this.m_btnSend.Name = "m_btnSend";
  74. this.m_btnSend.Size = new System.Drawing.Size(72, 27);
  75. this.m_btnSend.TabIndex = 4;
  76. this.m_btnSend.Text = "Send";
  77. this.m_btnSend.Click += new System.EventHandler(this.m_btnSend_Click);
  78. // 
  79. // MainForm
  80. // 
  81. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  82. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  83. this.AutoScroll = true;
  84. this.ClientSize = new System.Drawing.Size(240, 268);
  85. this.Controls.Add(this.m_btnSend);
  86. this.Controls.Add(this.m_txtMesage);
  87. this.Controls.Add(this.m_lblMessage);
  88. this.Controls.Add(this.m_txtReceiver);
  89. this.Controls.Add(this.m_lblReceiver);
  90. this.Menu = this.mainMenu1;
  91. this.Name = "MainForm";
  92. this.Text = "Sending SMS";
  93. this.ResumeLayout(false);
  94. }
  95. #endregion
  96. private System.Windows.Forms.Label m_lblReceiver;
  97. private System.Windows.Forms.TextBox m_txtReceiver;
  98. private System.Windows.Forms.Label m_lblMessage;
  99. private System.Windows.Forms.TextBox m_txtMesage;
  100. private System.Windows.Forms.Button m_btnSend;
  101. }
  102. }