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

Windows Mobile

开发平台:

C#

  1. namespace DrawingIcon
  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_timer = new System.Windows.Forms.Timer();
  31. this.SuspendLayout();
  32. // 
  33. // m_timer
  34. // 
  35. this.m_timer.Enabled = true;
  36. this.m_timer.Tick += new System.EventHandler(this.m_onTimer);
  37. // 
  38. // MainForm
  39. // 
  40. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  41. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  42. this.AutoScroll = true;
  43. this.ClientSize = new System.Drawing.Size(240, 268);
  44. this.Menu = this.mainMenu1;
  45. this.Name = "MainForm";
  46. this.Text = "Drawing Icon";
  47. this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainForm_Paint);
  48. this.ResumeLayout(false);
  49. }
  50. #endregion
  51. private System.Windows.Forms.Timer m_timer;
  52. }
  53. }