MainForm.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. namespace Oreo.VersionUpdate.Views
  2. {
  3. partial class MainForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.LbPluginName = new System.Windows.Forms.Label();
  31. this.LbUpdateDetail = new System.Windows.Forms.Label();
  32. this.LbCodeName = new System.Windows.Forms.Label();
  33. this.NiMini = new System.Windows.Forms.NotifyIcon(this.components);
  34. this.LbProgress = new System.Windows.Forms.Label();
  35. this.SuspendLayout();
  36. //
  37. // LbPluginName
  38. //
  39. this.LbPluginName.BackColor = System.Drawing.Color.Transparent;
  40. this.LbPluginName.Cursor = System.Windows.Forms.Cursors.Hand;
  41. this.LbPluginName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  42. this.LbPluginName.ForeColor = System.Drawing.Color.White;
  43. this.LbPluginName.Location = new System.Drawing.Point(48, 100);
  44. this.LbPluginName.Name = "LbPluginName";
  45. this.LbPluginName.Size = new System.Drawing.Size(262, 17);
  46. this.LbPluginName.TabIndex = 5;
  47. this.LbPluginName.Text = "插件名称";
  48. this.LbPluginName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  49. this.LbPluginName.Click += new System.EventHandler(this.LbPluginName_Click);
  50. //
  51. // LbUpdateDetail
  52. //
  53. this.LbUpdateDetail.BackColor = System.Drawing.Color.Transparent;
  54. this.LbUpdateDetail.ForeColor = System.Drawing.Color.White;
  55. this.LbUpdateDetail.Location = new System.Drawing.Point(85, 231);
  56. this.LbUpdateDetail.Name = "LbUpdateDetail";
  57. this.LbUpdateDetail.Size = new System.Drawing.Size(189, 41);
  58. this.LbUpdateDetail.TabIndex = 7;
  59. this.LbUpdateDetail.Text = "准备更新……";
  60. this.LbUpdateDetail.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  61. //
  62. // LbCodeName
  63. //
  64. this.LbCodeName.BackColor = System.Drawing.Color.Transparent;
  65. this.LbCodeName.ForeColor = System.Drawing.Color.White;
  66. this.LbCodeName.Location = new System.Drawing.Point(92, 55);
  67. this.LbCodeName.Name = "LbCodeName";
  68. this.LbCodeName.Size = new System.Drawing.Size(175, 17);
  69. this.LbCodeName.TabIndex = 9;
  70. this.LbCodeName.Text = "扬帆起航";
  71. this.LbCodeName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  72. //
  73. // NiMini
  74. //
  75. this.NiMini.Icon = ((System.Drawing.Icon)(resources.GetObject("NiMini.Icon")));
  76. this.NiMini.Text = "正在更新……";
  77. this.NiMini.Visible = true;
  78. //
  79. // LbProgress
  80. //
  81. this.LbProgress.BackColor = System.Drawing.Color.Transparent;
  82. this.LbProgress.Font = new System.Drawing.Font("宋体", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  83. this.LbProgress.ForeColor = System.Drawing.Color.White;
  84. this.LbProgress.Location = new System.Drawing.Point(76, 134);
  85. this.LbProgress.Name = "LbProgress";
  86. this.LbProgress.Size = new System.Drawing.Size(225, 97);
  87. this.LbProgress.TabIndex = 11;
  88. this.LbProgress.Text = "100%";
  89. this.LbProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  90. //
  91. // MainForm
  92. //
  93. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  94. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  95. this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
  96. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  97. this.ClientSize = new System.Drawing.Size(360, 360);
  98. this.Controls.Add(this.LbProgress);
  99. this.Controls.Add(this.LbCodeName);
  100. this.Controls.Add(this.LbUpdateDetail);
  101. this.Controls.Add(this.LbPluginName);
  102. this.DoubleBuffered = true;
  103. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  104. this.MaximizeBox = false;
  105. this.MinimizeBox = false;
  106. this.Name = "MainForm";
  107. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  108. this.Text = "正在准备升级……";
  109. this.Load += new System.EventHandler(this.MainForm_Load);
  110. this.ResumeLayout(false);
  111. }
  112. #endregion
  113. private System.Windows.Forms.Label LbPluginName;
  114. private System.Windows.Forms.Label LbUpdateDetail;
  115. private System.Windows.Forms.Label LbCodeName;
  116. private System.Windows.Forms.NotifyIcon NiMini;
  117. private System.Windows.Forms.Label LbProgress;
  118. }
  119. }