ToastForm.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. namespace Azylee.WinformSkin.FormUI.Toast
  2. {
  3. partial class ToastForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.PBIcon = new System.Windows.Forms.PictureBox();
  30. this.LBTitle = new System.Windows.Forms.Label();
  31. this.LBText = new System.Windows.Forms.Label();
  32. this.TMHide = new System.Windows.Forms.Timer(this.components);
  33. this.TMHideAnim = new System.Windows.Forms.Timer(this.components);
  34. this.TMShowAnim = new System.Windows.Forms.Timer(this.components);
  35. this.panel1 = new System.Windows.Forms.Panel();
  36. ((System.ComponentModel.ISupportInitialize)(this.PBIcon)).BeginInit();
  37. this.panel1.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // PBIcon
  41. //
  42. this.PBIcon.BackColor = System.Drawing.Color.Transparent;
  43. this.PBIcon.Image = global::Azylee.WinformSkin.Properties.Resources.toast_warning;
  44. this.PBIcon.Location = new System.Drawing.Point(16, 16);
  45. this.PBIcon.Name = "PBIcon";
  46. this.PBIcon.Size = new System.Drawing.Size(42, 41);
  47. this.PBIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  48. this.PBIcon.TabIndex = 4;
  49. this.PBIcon.TabStop = false;
  50. this.PBIcon.Click += new System.EventHandler(this.PBIcon_Click);
  51. //
  52. // LBTitle
  53. //
  54. this.LBTitle.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  55. this.LBTitle.ForeColor = System.Drawing.Color.White;
  56. this.LBTitle.Location = new System.Drawing.Point(68, 7);
  57. this.LBTitle.Name = "LBTitle";
  58. this.LBTitle.Size = new System.Drawing.Size(270, 20);
  59. this.LBTitle.TabIndex = 5;
  60. this.LBTitle.Text = "测试标题测试标题测试标题测试标题";
  61. this.LBTitle.Click += new System.EventHandler(this.LBTitle_Click);
  62. //
  63. // LBText
  64. //
  65. this.LBText.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  66. this.LBText.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(155)))), ((int)(((byte)(155)))));
  67. this.LBText.Location = new System.Drawing.Point(68, 30);
  68. this.LBText.Name = "LBText";
  69. this.LBText.Size = new System.Drawing.Size(270, 44);
  70. this.LBText.TabIndex = 6;
  71. this.LBText.Text = "测试,内容。测试,内容。测试,内容。测试,内容。测试,内容。测试,内容。";
  72. this.LBText.Click += new System.EventHandler(this.LBText_Click);
  73. //
  74. // TMHide
  75. //
  76. this.TMHide.Tick += new System.EventHandler(this.TMHide_Tick);
  77. //
  78. // TMHideAnim
  79. //
  80. this.TMHideAnim.Interval = 10;
  81. this.TMHideAnim.Tick += new System.EventHandler(this.TMHideAnim_Tick);
  82. //
  83. // TMShowAnim
  84. //
  85. this.TMShowAnim.Interval = 10;
  86. this.TMShowAnim.Tick += new System.EventHandler(this.TMShowAnim_Tick);
  87. //
  88. // panel1
  89. //
  90. this.panel1.Controls.Add(this.PBIcon);
  91. this.panel1.Controls.Add(this.LBTitle);
  92. this.panel1.Controls.Add(this.LBText);
  93. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  94. this.panel1.Location = new System.Drawing.Point(0, 0);
  95. this.panel1.Name = "panel1";
  96. this.panel1.Size = new System.Drawing.Size(360, 80);
  97. this.panel1.TabIndex = 7;
  98. //
  99. // ToastForm
  100. //
  101. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  102. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  103. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(31)))), ((int)(((byte)(31)))));
  104. this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(72)))), ((int)(((byte)(72)))));
  105. this.ClientSize = new System.Drawing.Size(360, 80);
  106. this.Controls.Add(this.panel1);
  107. this.MaximizeBox = false;
  108. this.MinimizeBox = false;
  109. this.Name = "ToastForm";
  110. this.ShowIcon = false;
  111. this.ShowInTaskbar = false;
  112. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  113. this.Text = "通知";
  114. this.TopMost = true;
  115. this.Load += new System.EventHandler(this.ToastForm_Load);
  116. ((System.ComponentModel.ISupportInitialize)(this.PBIcon)).EndInit();
  117. this.panel1.ResumeLayout(false);
  118. this.panel1.PerformLayout();
  119. this.ResumeLayout(false);
  120. }
  121. #endregion
  122. private System.Windows.Forms.PictureBox PBIcon;
  123. private System.Windows.Forms.Label LBTitle;
  124. private System.Windows.Forms.Label LBText;
  125. private System.Windows.Forms.Timer TMHide;
  126. private System.Windows.Forms.Timer TMHideAnim;
  127. private System.Windows.Forms.Timer TMShowAnim;
  128. private System.Windows.Forms.Panel panel1;
  129. }
  130. }