ToastForm.Designer.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. namespace Y.Skin.YoForm.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.LbMsg = new System.Windows.Forms.Label();
  30. this.TmActor = new System.Windows.Forms.Timer(this.components);
  31. this.SuspendLayout();
  32. //
  33. // LbMsg
  34. //
  35. this.LbMsg.BackColor = System.Drawing.Color.Gray;
  36. this.LbMsg.Dock = System.Windows.Forms.DockStyle.Fill;
  37. this.LbMsg.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  38. this.LbMsg.ForeColor = System.Drawing.Color.White;
  39. this.LbMsg.Location = new System.Drawing.Point(0, 0);
  40. this.LbMsg.Name = "LbMsg";
  41. this.LbMsg.Size = new System.Drawing.Size(323, 107);
  42. this.LbMsg.TabIndex = 0;
  43. this.LbMsg.Text = "Toast";
  44. this.LbMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  45. //
  46. // TmActor
  47. //
  48. this.TmActor.Interval = 1000;
  49. this.TmActor.Tick += new System.EventHandler(this.TmActor_Tick);
  50. //
  51. // ToastForm
  52. //
  53. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  55. this.ClientSize = new System.Drawing.Size(323, 107);
  56. this.Controls.Add(this.LbMsg);
  57. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  58. this.Name = "ToastForm";
  59. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  60. this.Text = "ToastForm";
  61. this.TopMost = true;
  62. this.Load += new System.EventHandler(this.ToastForm_Load);
  63. this.ResumeLayout(false);
  64. }
  65. #endregion
  66. private System.Windows.Forms.Label LbMsg;
  67. private System.Windows.Forms.Timer TmActor;
  68. }
  69. }