Form1.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:2k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.Data;
  7. namespace CustomEvent
  8. {
  9. /// <summary>
  10. /// Summary description for Form1.
  11. /// </summary>
  12. public class Form1 : System.Windows.Forms.Form
  13. {
  14. /// <summary>
  15. /// Required designer variable.
  16. /// </summary>
  17. private System.ComponentModel.Container components = null;
  18. public Form1()
  19. {
  20. //
  21. // Required for Windows Form Designer support
  22. //
  23. InitializeComponent();
  24. //
  25. // TODO: Add any constructor code after InitializeComponent call
  26. //
  27. }
  28. /// <summary>
  29. /// Clean up any resources being used.
  30. /// </summary>
  31. protected override void Dispose( bool disposing )
  32. {
  33. if( disposing )
  34. {
  35. if (components != null) 
  36. {
  37. components.Dispose();
  38. }
  39. }
  40. base.Dispose( disposing );
  41. }
  42. #region Windows Form Designer generated code
  43. /// <summary>
  44. /// Required method for Designer support - do not modify
  45. /// the contents of this method with the code editor.
  46. /// </summary>
  47. private void InitializeComponent()
  48. {
  49.       // 
  50.       // Form1
  51.       // 
  52.       this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  53.       this.ClientSize = new System.Drawing.Size(292, 251);
  54.       this.Name = "Form1";
  55.       this.Text = "Form1";
  56.     }
  57. #endregion
  58. /// <summary>
  59. /// The main entry point for the application.
  60. /// </summary>
  61. [STAThread]
  62. static void Main() 
  63. {
  64. Application.Run(new Form1());
  65. }
  66. }
  67. }