FrmAnchor.Designer.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="FrmAnchor.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 FrmAnchor.
  20. /// Implements the <see cref="System.Windows.Forms.Form" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.Form" />
  23. partial class FrmAnchor
  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. this.components = new System.ComponentModel.Container();
  49. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAnchor));
  50. this.timer1 = new System.Windows.Forms.Timer(this.components);
  51. this.SuspendLayout();
  52. //
  53. // timer1
  54. //
  55. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  56. //
  57. // FrmAnchor
  58. //
  59. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  60. this.ClientSize = new System.Drawing.Size(45, 48);
  61. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  62. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  63. this.Name = "FrmAnchor";
  64. this.ShowIcon = false;
  65. this.ShowInTaskbar = false;
  66. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  67. this.Text = "FrmAnchor";
  68. this.TopMost = true;
  69. this.Load += new System.EventHandler(this.FrmAnchor_Load);
  70. this.VisibleChanged += new System.EventHandler(this.FrmAnchor_VisibleChanged);
  71. this.ResumeLayout(false);
  72. }
  73. #endregion
  74. /// <summary>
  75. /// The timer1
  76. /// </summary>
  77. private System.Windows.Forms.Timer timer1;
  78. }
  79. }