StartForm.Designer.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. namespace IntelligentControlForsx.Start
  2. {
  3. partial class StartForm
  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.lbStatusInfo = new System.Windows.Forms.Label();
  29. this.SuspendLayout();
  30. //
  31. // lbStatusInfo
  32. //
  33. this.lbStatusInfo.AutoSize = true;
  34. this.lbStatusInfo.BackColor = System.Drawing.Color.Transparent;
  35. this.lbStatusInfo.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  36. this.lbStatusInfo.Location = new System.Drawing.Point(25, 262);
  37. this.lbStatusInfo.Name = "lbStatusInfo";
  38. this.lbStatusInfo.Size = new System.Drawing.Size(89, 19);
  39. this.lbStatusInfo.TabIndex = 0;
  40. this.lbStatusInfo.Text = "正在启动......";
  41. //
  42. // StartForm
  43. //
  44. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
  45. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  46. this.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.start;
  47. this.ClientSize = new System.Drawing.Size(640, 330);
  48. this.Controls.Add(this.lbStatusInfo);
  49. this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  51. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  52. this.Name = "StartForm";
  53. this.Text = "StartForm";
  54. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.StartForm_FormClosed);
  55. this.ResumeLayout(false);
  56. this.PerformLayout();
  57. }
  58. #endregion
  59. private System.Windows.Forms.Label lbStatusInfo;
  60. }
  61. }