FrmTransparent.Designer.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="FrmTransparent.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 FrmTransparent.
  20. /// Implements the <see cref="HZH_Controls.Forms.FrmBase" />
  21. /// </summary>
  22. /// <seealso cref="HZH_Controls.Forms.FrmBase" />
  23. partial class FrmTransparent
  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(FrmTransparent));
  49. this.SuspendLayout();
  50. //
  51. // FrmTransparent
  52. //
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  54. this.BackColor = System.Drawing.Color.Black;
  55. this.ClientSize = new System.Drawing.Size(284, 262);
  56. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  57. this.Name = "FrmTransparent";
  58. this.Opacity = 0.5D;
  59. this.ShowIcon = false;
  60. this.ShowInTaskbar = false;
  61. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  62. this.Text = "FrmTransparent";
  63. this.Load += new System.EventHandler(this.FrmTransparent_Load);
  64. this.ResumeLayout(false);
  65. }
  66. #endregion
  67. }
  68. }