ToastForm.Designer.cs 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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.PNMain = new System.Windows.Forms.Panel();
  36. this.PNContainer = new System.Windows.Forms.Panel();
  37. this.PNText = new System.Windows.Forms.Panel();
  38. this.PNTitle = new System.Windows.Forms.Panel();
  39. this.PNIcon = new System.Windows.Forms.Panel();
  40. ((System.ComponentModel.ISupportInitialize)(this.PBIcon)).BeginInit();
  41. this.PNMain.SuspendLayout();
  42. this.PNContainer.SuspendLayout();
  43. this.PNText.SuspendLayout();
  44. this.PNTitle.SuspendLayout();
  45. this.PNIcon.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // PBIcon
  49. //
  50. this.PBIcon.BackColor = System.Drawing.Color.Transparent;
  51. this.PBIcon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  52. this.PBIcon.Image = global::Azylee.WinformSkin.Properties.Resources.toast_warning;
  53. this.PBIcon.Location = new System.Drawing.Point(13, 16);
  54. this.PBIcon.Name = "PBIcon";
  55. this.PBIcon.Size = new System.Drawing.Size(42, 41);
  56. this.PBIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  57. this.PBIcon.TabIndex = 4;
  58. this.PBIcon.TabStop = false;
  59. this.PBIcon.Click += new System.EventHandler(this.PBIcon_Click);
  60. //
  61. // LBTitle
  62. //
  63. this.LBTitle.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.LBTitle.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  65. this.LBTitle.ForeColor = System.Drawing.Color.White;
  66. this.LBTitle.Location = new System.Drawing.Point(3, 3);
  67. this.LBTitle.Name = "LBTitle";
  68. this.LBTitle.Size = new System.Drawing.Size(288, 20);
  69. this.LBTitle.TabIndex = 5;
  70. this.LBTitle.Text = "测试标题测试标题测试标题测试标题";
  71. this.LBTitle.Click += new System.EventHandler(this.LBTitle_Click);
  72. //
  73. // LBText
  74. //
  75. this.LBText.Dock = System.Windows.Forms.DockStyle.Fill;
  76. this.LBText.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  77. this.LBText.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(155)))), ((int)(((byte)(155)))));
  78. this.LBText.Location = new System.Drawing.Point(3, 3);
  79. this.LBText.Name = "LBText";
  80. this.LBText.Size = new System.Drawing.Size(288, 52);
  81. this.LBText.TabIndex = 6;
  82. this.LBText.Text = "测试,内容。测试,内容。测试,内容。测试,内容。测试,内容。测试,内容。";
  83. this.LBText.Click += new System.EventHandler(this.LBText_Click);
  84. //
  85. // TMHide
  86. //
  87. this.TMHide.Tick += new System.EventHandler(this.TMHide_Tick);
  88. //
  89. // TMHideAnim
  90. //
  91. this.TMHideAnim.Interval = 10;
  92. this.TMHideAnim.Tick += new System.EventHandler(this.TMHideAnim_Tick);
  93. //
  94. // TMShowAnim
  95. //
  96. this.TMShowAnim.Interval = 10;
  97. this.TMShowAnim.Tick += new System.EventHandler(this.TMShowAnim_Tick);
  98. //
  99. // PNMain
  100. //
  101. this.PNMain.Controls.Add(this.PNContainer);
  102. this.PNMain.Controls.Add(this.PNIcon);
  103. this.PNMain.Dock = System.Windows.Forms.DockStyle.Fill;
  104. this.PNMain.Location = new System.Drawing.Point(0, 0);
  105. this.PNMain.Name = "PNMain";
  106. this.PNMain.Padding = new System.Windows.Forms.Padding(3);
  107. this.PNMain.Size = new System.Drawing.Size(360, 90);
  108. this.PNMain.TabIndex = 8;
  109. //
  110. // PNContainer
  111. //
  112. this.PNContainer.Controls.Add(this.PNText);
  113. this.PNContainer.Controls.Add(this.PNTitle);
  114. this.PNContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  115. this.PNContainer.Location = new System.Drawing.Point(63, 3);
  116. this.PNContainer.Name = "PNContainer";
  117. this.PNContainer.Size = new System.Drawing.Size(294, 84);
  118. this.PNContainer.TabIndex = 10;
  119. //
  120. // PNText
  121. //
  122. this.PNText.Controls.Add(this.LBText);
  123. this.PNText.Dock = System.Windows.Forms.DockStyle.Fill;
  124. this.PNText.Location = new System.Drawing.Point(0, 26);
  125. this.PNText.Name = "PNText";
  126. this.PNText.Padding = new System.Windows.Forms.Padding(3);
  127. this.PNText.Size = new System.Drawing.Size(294, 58);
  128. this.PNText.TabIndex = 10;
  129. //
  130. // PNTitle
  131. //
  132. this.PNTitle.Controls.Add(this.LBTitle);
  133. this.PNTitle.Dock = System.Windows.Forms.DockStyle.Top;
  134. this.PNTitle.Location = new System.Drawing.Point(0, 0);
  135. this.PNTitle.Name = "PNTitle";
  136. this.PNTitle.Padding = new System.Windows.Forms.Padding(3);
  137. this.PNTitle.Size = new System.Drawing.Size(294, 26);
  138. this.PNTitle.TabIndex = 9;
  139. //
  140. // PNIcon
  141. //
  142. this.PNIcon.Controls.Add(this.PBIcon);
  143. this.PNIcon.Dock = System.Windows.Forms.DockStyle.Left;
  144. this.PNIcon.Location = new System.Drawing.Point(3, 3);
  145. this.PNIcon.Name = "PNIcon";
  146. this.PNIcon.Size = new System.Drawing.Size(60, 84);
  147. this.PNIcon.TabIndex = 9;
  148. //
  149. // ToastForm
  150. //
  151. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  152. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  153. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(31)))), ((int)(((byte)(31)))));
  154. this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(72)))), ((int)(((byte)(72)))));
  155. this.ClientSize = new System.Drawing.Size(360, 90);
  156. this.Controls.Add(this.PNMain);
  157. this.MaximizeBox = false;
  158. this.MinimizeBox = false;
  159. this.Name = "ToastForm";
  160. this.ShowIcon = false;
  161. this.ShowInTaskbar = false;
  162. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  163. this.Text = "通知";
  164. this.TopMost = true;
  165. this.Load += new System.EventHandler(this.ToastForm_Load);
  166. ((System.ComponentModel.ISupportInitialize)(this.PBIcon)).EndInit();
  167. this.PNMain.ResumeLayout(false);
  168. this.PNContainer.ResumeLayout(false);
  169. this.PNText.ResumeLayout(false);
  170. this.PNTitle.ResumeLayout(false);
  171. this.PNIcon.ResumeLayout(false);
  172. this.ResumeLayout(false);
  173. }
  174. #endregion
  175. private System.Windows.Forms.PictureBox PBIcon;
  176. private System.Windows.Forms.Label LBTitle;
  177. private System.Windows.Forms.Label LBText;
  178. private System.Windows.Forms.Timer TMHide;
  179. private System.Windows.Forms.Timer TMHideAnim;
  180. private System.Windows.Forms.Timer TMShowAnim;
  181. private System.Windows.Forms.Panel PNMain;
  182. private System.Windows.Forms.Panel PNIcon;
  183. private System.Windows.Forms.Panel PNContainer;
  184. private System.Windows.Forms.Panel PNText;
  185. private System.Windows.Forms.Panel PNTitle;
  186. }
  187. }