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

Windows Mobile

开发平台:

C#

  1. namespace HandDrawer
  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. 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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.m_mainMenu = new System.Windows.Forms.MainMenu();
  31. this.m_mnuClear = new System.Windows.Forms.MenuItem();
  32. this.m_mnuSave = new System.Windows.Forms.MenuItem();
  33. this.m_imageList = new System.Windows.Forms.ImageList();
  34. this.m_saveFileDialog = new System.Windows.Forms.SaveFileDialog();
  35. this.SuspendLayout();
  36. // 
  37. // m_mainMenu
  38. // 
  39. this.m_mainMenu.MenuItems.Add(this.m_mnuClear);
  40. this.m_mainMenu.MenuItems.Add(this.m_mnuSave);
  41. // 
  42. // m_mnuClear
  43. // 
  44. this.m_mnuClear.Text = "Clear";
  45. this.m_mnuClear.Click += new System.EventHandler(this.m_mnuClear_Click);
  46. // 
  47. // m_mnuSave
  48. // 
  49. this.m_mnuSave.Text = "Save";
  50. this.m_mnuSave.Click += new System.EventHandler(this.m_mnuSave_Click);
  51. this.m_imageList.Images.Clear();
  52. this.m_imageList.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
  53. this.m_imageList.Images.Add(((System.Drawing.Image)(resources.GetObject("resource1"))));
  54. this.m_imageList.Images.Add(((System.Drawing.Image)(resources.GetObject("resource2"))));
  55. this.m_imageList.Images.Add(((System.Drawing.Image)(resources.GetObject("resource3"))));
  56. // 
  57. // m_saveFileDialog
  58. // 
  59. this.m_saveFileDialog.Filter = "Bitmap (*.bmp)|*.bmp";
  60. // 
  61. // MainForm
  62. // 
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  65. this.AutoScroll = true;
  66. this.ClientSize = new System.Drawing.Size(240, 268);
  67. this.Menu = this.m_mainMenu;
  68. this.Name = "MainForm";
  69. this.Text = "Hand Drawing";
  70. this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainForm_Paint);
  71. this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseUp);
  72. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseMove);
  73. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseDown);
  74. this.ResumeLayout(false);
  75. }
  76. #endregion
  77. private System.Windows.Forms.MenuItem m_mnuClear;
  78. private System.Windows.Forms.MenuItem m_mnuSave;
  79. private System.Windows.Forms.ImageList m_imageList;
  80. private System.Windows.Forms.SaveFileDialog m_saveFileDialog;
  81. }
  82. }