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

Windows Mobile

开发平台:

C#

  1. namespace AccessingContacts
  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_lstContacts = new System.Windows.Forms.ListView();
  34. this.m_colFileAs = new System.Windows.Forms.ColumnHeader();
  35. this.m_colMobile = new System.Windows.Forms.ColumnHeader();
  36. this.m_colHome = new System.Windows.Forms.ColumnHeader();
  37. this.m_colBusiness = new System.Windows.Forms.ColumnHeader();
  38. this.m_colEmail = new System.Windows.Forms.ColumnHeader();
  39. this.SuspendLayout();
  40. // 
  41. // m_mainMenu
  42. // 
  43. this.m_mainMenu.MenuItems.Add(this.m_mnuNew);
  44. this.m_mainMenu.MenuItems.Add(this.m_mnuDetails);
  45. // 
  46. // m_mnuNew
  47. // 
  48. this.m_mnuNew.Text = "New";
  49. this.m_mnuNew.Click += new System.EventHandler(this.m_mnuNew_Click);
  50. // 
  51. // m_mnuDetails
  52. // 
  53. this.m_mnuDetails.Text = "Details";
  54. this.m_mnuDetails.Click += new System.EventHandler(this.m_mnuDetails_Click);
  55. // 
  56. // m_lstContacts
  57. // 
  58. this.m_lstContacts.Columns.Add(this.m_colFileAs);
  59. this.m_lstContacts.Columns.Add(this.m_colMobile);
  60. this.m_lstContacts.Columns.Add(this.m_colHome);
  61. this.m_lstContacts.Columns.Add(this.m_colBusiness);
  62. this.m_lstContacts.Columns.Add(this.m_colEmail);
  63. this.m_lstContacts.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.m_lstContacts.FullRowSelect = true;
  65. this.m_lstContacts.Location = new System.Drawing.Point(0, 0);
  66. this.m_lstContacts.Name = "m_lstContacts";
  67. this.m_lstContacts.Size = new System.Drawing.Size(240, 268);
  68. this.m_lstContacts.TabIndex = 0;
  69. this.m_lstContacts.View = System.Windows.Forms.View.Details;
  70. this.m_lstContacts.ItemActivate += new System.EventHandler(this.m_lstContacts_ItemActivate);
  71. // 
  72. // m_colFileAs
  73. // 
  74. this.m_colFileAs.Text = "FileAs";
  75. this.m_colFileAs.Width = 90;
  76. // 
  77. // m_colMobile
  78. // 
  79. this.m_colMobile.Text = "Mobile Phone";
  80. this.m_colMobile.Width = 100;
  81. // 
  82. // m_colHome
  83. // 
  84. this.m_colHome.Text = "Home Phone";
  85. this.m_colHome.Width = 100;
  86. // 
  87. // m_colBusiness
  88. // 
  89. this.m_colBusiness.Text = "Business Phone";
  90. this.m_colBusiness.Width = 100;
  91. // 
  92. // m_colEmail
  93. // 
  94. this.m_colEmail.Text = "Email";
  95. this.m_colEmail.Width = 200;
  96. // 
  97. // MainForm
  98. // 
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  101. this.AutoScroll = true;
  102. this.ClientSize = new System.Drawing.Size(240, 268);
  103. this.Controls.Add(this.m_lstContacts);
  104. this.Menu = this.m_mainMenu;
  105. this.Name = "MainForm";
  106. this.Text = "Contacts";
  107. this.Activated += new System.EventHandler(this.MainForm_Activated);
  108. this.ResumeLayout(false);
  109. }
  110. #endregion
  111. private System.Windows.Forms.MenuItem m_mnuNew;
  112. private System.Windows.Forms.MenuItem m_mnuDetails;
  113. private System.Windows.Forms.ListView m_lstContacts;
  114. private System.Windows.Forms.ColumnHeader m_colFileAs;
  115. private System.Windows.Forms.ColumnHeader m_colMobile;
  116. private System.Windows.Forms.ColumnHeader m_colHome;
  117. private System.Windows.Forms.ColumnHeader m_colBusiness;
  118. private System.Windows.Forms.ColumnHeader m_colEmail;
  119. }
  120. }