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

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 SimpleWinApp
  8. {
  9. /// <summary>
  10. /// Summary description for Form1.
  11. /// </summary>
  12. public class Form1 : System.Windows.Forms.Form
  13. {
  14.     private System.Windows.Forms.TextBox textBox1;
  15. /// <summary>
  16. /// Required designer variable.
  17. /// </summary>
  18. private System.ComponentModel.Container components = null;
  19. public Form1()
  20. {
  21. //
  22. // Required for Windows Form Designer support
  23. //
  24. InitializeComponent();
  25. //
  26. // TODO: Add any constructor code after InitializeComponent call
  27. //
  28. //this.Visible = true;
  29. this.Show();
  30.       System.Diagnostics.Trace.WriteLine("Constructor");
  31. }
  32. /// <summary>
  33. /// Clean up any resources being used.
  34. /// </summary>
  35. protected override void Dispose( bool disposing )
  36. {
  37. if( disposing )
  38. {
  39. if (components != null) 
  40. {
  41. components.Dispose();
  42. }
  43. }
  44. base.Dispose( disposing );
  45.       System.Diagnostics.Trace.WriteLine("Dispose");
  46. }
  47. #region Windows Form Designer generated code
  48. /// <summary>
  49. /// Required method for Designer support - do not modify
  50. /// the contents of this method with the code editor.
  51. /// </summary>
  52. private void InitializeComponent()
  53. {
  54.       this.textBox1 = new System.Windows.Forms.TextBox();
  55.       this.SuspendLayout();
  56.       // 
  57.       // textBox1
  58.       // 
  59.       this.textBox1.Location = new System.Drawing.Point(72, 56);
  60.       this.textBox1.Name = "textBox1";
  61.       this.textBox1.TabIndex = 0;
  62.       this.textBox1.Text = "textBox1";
  63.       // 
  64.       // Form1
  65.       // 
  66.       this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  67.       this.ClientSize = new System.Drawing.Size(292, 271);
  68.       this.Controls.Add(this.textBox1);
  69.       this.Name = "Form1";
  70.       this.Text = "Form1";
  71.       this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
  72.       this.Load += new System.EventHandler(this.Form1_Load);
  73.       this.Closed += new System.EventHandler(this.Form1_Closed);
  74.       this.Activated += new System.EventHandler(this.Form1_Activated);
  75.       this.Leave += new System.EventHandler(this.Form1_Leave);
  76.       this.Enter += new System.EventHandler(this.Form1_Enter);
  77.       this.Deactivate += new System.EventHandler(this.Form1_Deactivate);
  78.       this.ResumeLayout(false);
  79.     }
  80. #endregion
  81.     private void Form1_Closed(object sender, System.EventArgs e)
  82.     {
  83.       System.Diagnostics.Trace.WriteLine("Closed");
  84.     }
  85.     private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
  86.     {
  87.       System.Diagnostics.Trace.WriteLine("Closing");
  88.     }
  89.     private void Form1_Load(object sender, System.EventArgs e)
  90.     {
  91.       System.Diagnostics.Trace.WriteLine("Load");
  92.     }
  93.     private void Form1_Activated(object sender, System.EventArgs e)
  94.     {
  95.       System.Diagnostics.Trace.WriteLine("Activated");
  96.     }
  97.     private void Form1_Deactivate(object sender, System.EventArgs e)
  98.     {
  99.       System.Diagnostics.Trace.WriteLine("Deactivate " + textBox1.Text);
  100.     }
  101.     private void Form1_Enter(object sender, System.EventArgs e)
  102.     {
  103.       System.Diagnostics.Trace.WriteLine("Enter");
  104.     }
  105.     private void Form1_Leave(object sender, System.EventArgs e)
  106.     {
  107.       System.Diagnostics.Trace.WriteLine("Leave");
  108.     }
  109. }
  110. }