FormStart.Designer.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. namespace ImpulseVision
  2. {
  3. partial class FormStart
  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.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.TimerForClose = new System.Windows.Forms.Timer(this.components);
  31. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // pictureBox1
  35. //
  36. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  37. this.pictureBox1.Image = global::ImpulseVision.Properties.Resources.ImpulseVision_Icon;
  38. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  39. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  40. this.pictureBox1.Name = "pictureBox1";
  41. this.pictureBox1.Size = new System.Drawing.Size(599, 337);
  42. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  43. this.pictureBox1.TabIndex = 0;
  44. this.pictureBox1.TabStop = false;
  45. //
  46. // TimerForClose
  47. //
  48. this.TimerForClose.Interval = 1500;
  49. this.TimerForClose.Tick += new System.EventHandler(this.TimerForClose_Tick);
  50. //
  51. // FormStart
  52. //
  53. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  55. this.BackColor = System.Drawing.Color.White;
  56. this.ClientSize = new System.Drawing.Size(599, 337);
  57. this.Controls.Add(this.pictureBox1);
  58. this.Font = new System.Drawing.Font("Segoe UI", 12F);
  59. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  60. this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
  61. this.MaximizeBox = false;
  62. this.MinimizeBox = false;
  63. this.Name = "FormStart";
  64. this.ShowIcon = false;
  65. this.ShowInTaskbar = false;
  66. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  67. this.Text = "FormStart";
  68. this.Load += new System.EventHandler(this.FormStart_Load);
  69. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  70. this.ResumeLayout(false);
  71. }
  72. #endregion
  73. private System.Windows.Forms.PictureBox pictureBox1;
  74. private System.Windows.Forms.Timer TimerForClose;
  75. }
  76. }