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

Windows Mobile

开发平台:

C#

  1. namespace InterceptingMessages
  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 m_mainMenu;
  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_interceptor.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.m_mainMenu = new System.Windows.Forms.MainMenu();
  31. this.m_txtMessages = new System.Windows.Forms.TextBox();
  32. this.m_mnuClear = new System.Windows.Forms.MenuItem();
  33. this.m_mnuExit = new System.Windows.Forms.MenuItem();
  34. this.SuspendLayout();
  35. // 
  36. // m_mainMenu
  37. // 
  38. this.m_mainMenu.MenuItems.Add(this.m_mnuClear);
  39. this.m_mainMenu.MenuItems.Add(this.m_mnuExit);
  40. // 
  41. // m_txtMessages
  42. // 
  43. this.m_txtMessages.Dock = System.Windows.Forms.DockStyle.Fill;
  44. this.m_txtMessages.Location = new System.Drawing.Point(0, 0);
  45. this.m_txtMessages.Multiline = true;
  46. this.m_txtMessages.Name = "m_txtMessages";
  47. this.m_txtMessages.ReadOnly = true;
  48. this.m_txtMessages.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  49. this.m_txtMessages.Size = new System.Drawing.Size(240, 268);
  50. this.m_txtMessages.TabIndex = 0;
  51. // 
  52. // m_mnuClear
  53. // 
  54. this.m_mnuClear.Text = "Clear";
  55. this.m_mnuClear.Click += new System.EventHandler(this.m_mnuClear_Click);
  56. // 
  57. // m_mnuExit
  58. // 
  59. this.m_mnuExit.Text = "Exit";
  60. this.m_mnuExit.Click += new System.EventHandler(this.m_mnuExit_Click);
  61. // 
  62. // MainForm
  63. // 
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  66. this.AutoScroll = true;
  67. this.ClientSize = new System.Drawing.Size(240, 268);
  68. this.Controls.Add(this.m_txtMessages);
  69. this.Menu = this.m_mainMenu;
  70. this.Name = "MainForm";
  71. this.Text = "SMS Listener";
  72. this.ResumeLayout(false);
  73. }
  74. #endregion
  75. private System.Windows.Forms.TextBox m_txtMessages;
  76. private System.Windows.Forms.MenuItem m_mnuClear;
  77. private System.Windows.Forms.MenuItem m_mnuExit;
  78. }
  79. }