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

Windows Mobile

开发平台:

C#

  1. namespace UsingDocumentList
  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_documentList = new Microsoft.WindowsCE.Forms.DocumentList();
  31. this.m_statusBar = new System.Windows.Forms.StatusBar();
  32. this.SuspendLayout();
  33. // 
  34. // m_documentList
  35. // 
  36. this.m_documentList.Location = new System.Drawing.Point(0, 0);
  37. this.m_documentList.Name = "m_documentList";
  38. this.m_documentList.Size = new System.Drawing.Size(240, 268);
  39. this.m_documentList.TabIndex = 0;
  40. this.m_documentList.DeletingDocument += new Microsoft.WindowsCE.Forms.DocumentListEventHandler(this.m_documentList_DeletingDocument);
  41. this.m_documentList.DocumentActivated += new Microsoft.WindowsCE.Forms.DocumentListEventHandler(this.m_documentList_DocumentActivated);
  42. this.m_documentList.SelectedDirectoryChanged += new System.EventHandler(this.m_documentList_SelectedDirectoryChanged);
  43. // 
  44. // m_statusBar
  45. // 
  46. this.m_statusBar.Location = new System.Drawing.Point(0, 246);
  47. this.m_statusBar.Name = "m_statusBar";
  48. this.m_statusBar.Size = new System.Drawing.Size(240, 22);
  49. // 
  50. // MainForm
  51. // 
  52. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  54. this.AutoScroll = true;
  55. this.ClientSize = new System.Drawing.Size(240, 268);
  56. this.Controls.Add(this.m_statusBar);
  57. this.Controls.Add(this.m_documentList);
  58. this.Menu = this.mainMenu1;
  59. this.Name = "MainForm";
  60. this.Text = "Document List";
  61. this.ResumeLayout(false);
  62. }
  63. #endregion
  64. private Microsoft.WindowsCE.Forms.DocumentList m_documentList;
  65. private System.Windows.Forms.StatusBar m_statusBar;
  66. }
  67. }