FrmBase.Designer.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="FrmBase.Designer.cs">
  7. // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
  8. // </copyright>
  9. //
  10. // Blog: https://www.cnblogs.com/bfyx
  11. // GitHub:https://github.com/kwwwvagaa/NetWinformControl
  12. // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
  13. //
  14. // If you use this code, please keep this note.
  15. // ***********************************************************************
  16. namespace HZH_Controls.Forms
  17. {
  18. /// <summary>
  19. /// Class FrmBase.
  20. /// Implements the <see cref="System.Windows.Forms.Form" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.Form" />
  23. partial class FrmBase
  24. {
  25. /// <summary>
  26. /// Required designer variable.
  27. /// </summary>
  28. private System.ComponentModel.IContainer components = null;
  29. /// <summary>
  30. /// Clean up any resources being used.
  31. /// </summary>
  32. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  33. protected override void Dispose(bool disposing)
  34. {
  35. if (disposing && (components != null))
  36. {
  37. components.Dispose();
  38. }
  39. base.Dispose(disposing);
  40. }
  41. #region Windows Form Designer generated code
  42. /// <summary>
  43. /// Required method for Designer support - do not modify
  44. /// the contents of this method with the code editor.
  45. /// </summary>
  46. private void InitializeComponent()
  47. {
  48. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBase));
  49. this.SuspendLayout();
  50. //
  51. // FrmBase
  52. //
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  54. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
  55. this.ClientSize = new System.Drawing.Size(331, 371);
  56. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  57. this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
  58. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  59. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  60. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  61. this.Name = "FrmBase";
  62. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  63. this.Text = "FrmBase";
  64. this.Load += new System.EventHandler(this.FrmBase_Load);
  65. this.ResumeLayout(false);
  66. }
  67. #endregion
  68. }
  69. }