SimpleAlert.Designer.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. namespace ShareWifi.Views.Components
  2. {
  3. partial class SimpleAlert
  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.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
  30. this.lbMessage = new System.Windows.Forms.Label();
  31. this.timer1 = new System.Windows.Forms.Timer(this.components);
  32. this.SuspendLayout();
  33. //
  34. // dateTimePicker1
  35. //
  36. this.dateTimePicker1.Location = new System.Drawing.Point(489, 192);
  37. this.dateTimePicker1.Name = "dateTimePicker1";
  38. this.dateTimePicker1.Size = new System.Drawing.Size(200, 21);
  39. this.dateTimePicker1.TabIndex = 0;
  40. //
  41. // lbMessage
  42. //
  43. this.lbMessage.AutoSize = true;
  44. this.lbMessage.Font = new System.Drawing.Font("SimSun", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  45. this.lbMessage.ForeColor = System.Drawing.Color.White;
  46. this.lbMessage.Location = new System.Drawing.Point(12, 13);
  47. this.lbMessage.Name = "lbMessage";
  48. this.lbMessage.Size = new System.Drawing.Size(34, 15);
  49. this.lbMessage.TabIndex = 1;
  50. this.lbMessage.Text = "85%";
  51. //
  52. // timer1
  53. //
  54. this.timer1.Interval = 3000;
  55. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  56. //
  57. // SimpleAlert
  58. //
  59. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  60. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  61. this.BackColor = System.Drawing.Color.Black;
  62. this.ClientSize = new System.Drawing.Size(169, 37);
  63. this.Controls.Add(this.lbMessage);
  64. this.Controls.Add(this.dateTimePicker1);
  65. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  66. this.Name = "SimpleAlert";
  67. this.Opacity = 0.5D;
  68. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  69. this.Text = "SimpleAlert";
  70. this.Load += new System.EventHandler(this.SimpleAlert_Load);
  71. this.ResumeLayout(false);
  72. this.PerformLayout();
  73. }
  74. #endregion
  75. private System.Windows.Forms.DateTimePicker dateTimePicker1;
  76. private System.Windows.Forms.Label lbMessage;
  77. private System.Windows.Forms.Timer timer1;
  78. }
  79. }