You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.5 KiB

  1. #if NETFX || NETCORE
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Apewer.Surface
  6. {
  7. /// <summary>由 .NET Framework 提供的标准窗体。</summary>
  8. public class NormalForm : System.Windows.Forms.Form
  9. {
  10. /// <summary>必需的设计器变量。</summary>
  11. private System.ComponentModel.IContainer components = null;
  12. /// <summary>清理所有正在使用的资源。</summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null)) components.Dispose();
  17. base.Dispose(disposing);
  18. }
  19. #region Windows 窗体设计器生成的代码
  20. /// <summary>
  21. /// 设计器支持所需的方法 - 不要修改
  22. /// 使用代码编辑器修改此方法的内容。
  23. /// </summary>
  24. private void InitializeComponent()
  25. {
  26. this.SuspendLayout();
  27. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  28. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  29. this.ClientSize = new System.Drawing.Size(900, 600);
  30. this.Font = FormsUtility.DefaultFont;
  31. this.Text = "NormalForm";
  32. this.ResumeLayout(false);
  33. }
  34. #endregion
  35. /// <summary>构造函数。</summary>
  36. public NormalForm()
  37. {
  38. InitializeComponent();
  39. }
  40. }
  41. }
  42. #endif