AnotherChildForm.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. namespace SimpleMDIApp
  7. {
  8. /// <summary>
  9. /// Summary description for AnotherChildForm.
  10. /// </summary>
  11. public class AnotherChildForm : System.Windows.Forms.Form
  12. {
  13. private System.Windows.Forms.Label label1;
  14. /// <summary>
  15. /// Required designer variable.
  16. /// </summary>
  17. private System.ComponentModel.Container components = null;
  18. public AnotherChildForm()
  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. this.label1 = new System.Windows.Forms.Label();
  50. this.SuspendLayout();
  51. // 
  52. // label1
  53. // 
  54. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
  55. this.label1.Location = new System.Drawing.Point(24, 32);
  56. this.label1.Name = "label1";
  57. this.label1.Size = new System.Drawing.Size(256, 32);
  58. this.label1.TabIndex = 0;
  59. this.label1.Text = "This is another child form!";
  60. // 
  61. // AnotherChildForm
  62. // 
  63. this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  64. this.ClientSize = new System.Drawing.Size(292, 273);
  65. this.Controls.Add(this.label1);
  66. this.Name = "AnotherChildForm";
  67. this.Text = "AnotherChildForm";
  68. this.ResumeLayout(false);
  69. }
  70. #endregion
  71. }
  72. }