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

Windows Mobile

开发平台:

C#

  1. namespace AccessingAppointments
  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. m_outlookSession.Dispose();
  17. if(disposing && (components != null))
  18. {
  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_mnuNew = new System.Windows.Forms.MenuItem();
  32. this.m_mnuDetails = new System.Windows.Forms.MenuItem();
  33. this.m_lstAppointments = new System.Windows.Forms.ListView();
  34. this.m_colSubject = new System.Windows.Forms.ColumnHeader();
  35. this.m_colStart = new System.Windows.Forms.ColumnHeader();
  36. this.m_colEnd = new System.Windows.Forms.ColumnHeader();
  37. this.SuspendLayout();
  38. // 
  39. // m_mainMenu
  40. // 
  41. this.m_mainMenu.MenuItems.Add(this.m_mnuNew);
  42. this.m_mainMenu.MenuItems.Add(this.m_mnuDetails);
  43. // 
  44. // m_mnuNew
  45. // 
  46. this.m_mnuNew.Text = "New";
  47. this.m_mnuNew.Click += new System.EventHandler(this.m_mnuNew_Click);
  48. // 
  49. // m_mnuDetails
  50. // 
  51. this.m_mnuDetails.Text = "Details";
  52. this.m_mnuDetails.Click += new System.EventHandler(this.m_mnuDetails_Click);
  53. // 
  54. // m_lstAppointments
  55. // 
  56. this.m_lstAppointments.Columns.Add(this.m_colSubject);
  57. this.m_lstAppointments.Columns.Add(this.m_colStart);
  58. this.m_lstAppointments.Columns.Add(this.m_colEnd);
  59. this.m_lstAppointments.Dock = System.Windows.Forms.DockStyle.Fill;
  60. this.m_lstAppointments.FullRowSelect = true;
  61. this.m_lstAppointments.Location = new System.Drawing.Point(0, 0);
  62. this.m_lstAppointments.Name = "m_lstAppointments";
  63. this.m_lstAppointments.Size = new System.Drawing.Size(240, 268);
  64. this.m_lstAppointments.TabIndex = 0;
  65. this.m_lstAppointments.View = System.Windows.Forms.View.Details;
  66. this.m_lstAppointments.ItemActivate += new System.EventHandler(this.m_lstAppointments_ItemActivate);
  67. // 
  68. // m_colSubject
  69. // 
  70. this.m_colSubject.Text = "Subject";
  71. this.m_colSubject.Width = 150;
  72. // 
  73. // m_colStart
  74. // 
  75. this.m_colStart.Text = "Start";
  76. this.m_colStart.Width = 120;
  77. // 
  78. // m_colEnd
  79. // 
  80. this.m_colEnd.Text = "End";
  81. this.m_colEnd.Width = 120;
  82. // 
  83. // MainForm
  84. // 
  85. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  86. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  87. this.AutoScroll = true;
  88. this.ClientSize = new System.Drawing.Size(240, 268);
  89. this.Controls.Add(this.m_lstAppointments);
  90. this.Menu = this.m_mainMenu;
  91. this.Name = "MainForm";
  92. this.Text = "Appointments";
  93. this.Activated += new System.EventHandler(this.MainForm_Activated);
  94. this.ResumeLayout(false);
  95. }
  96. #endregion
  97. private System.Windows.Forms.MenuItem m_mnuNew;
  98. private System.Windows.Forms.MenuItem m_mnuDetails;
  99. private System.Windows.Forms.ListView m_lstAppointments;
  100. private System.Windows.Forms.ColumnHeader m_colSubject;
  101. private System.Windows.Forms.ColumnHeader m_colStart;
  102. private System.Windows.Forms.ColumnHeader m_colEnd;
  103. }
  104. }