UCControlBase.Designer.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCControlBase.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. using System.Drawing;
  17. using System.Windows.Forms;
  18. namespace HZH_Controls.Controls
  19. {
  20. /// <summary>
  21. /// Class UCControlBase.
  22. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  23. /// </summary>
  24. /// <seealso cref="System.Windows.Forms.UserControl" />
  25. partial class UCControlBase
  26. {
  27. /// <summary>
  28. /// 必需的设计器变量。
  29. /// </summary>
  30. private System.ComponentModel.IContainer components = null;
  31. /// <summary>
  32. /// 清理所有正在使用的资源。
  33. /// </summary>
  34. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  35. protected override void Dispose(bool disposing)
  36. {
  37. if (disposing && (components != null))
  38. {
  39. components.Dispose();
  40. }
  41. base.Dispose(disposing);
  42. }
  43. #region 组件设计器生成的代码
  44. /// <summary>
  45. /// 设计器支持所需的方法 - 不要
  46. /// 使用代码编辑器修改此方法的内容。
  47. /// </summary>
  48. private void InitializeComponent()
  49. {
  50. this.SuspendLayout();
  51. //
  52. // UCControlBase
  53. //
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  55. this.DoubleBuffered = true;
  56. this.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  57. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  58. this.Name = "UCControlBase";
  59. this.Size = new System.Drawing.Size(237, 154);
  60. this.ResumeLayout(false);
  61. }
  62. #endregion
  63. }
  64. }