InfoForm.Designer.cs 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace Optimizer
  2. {
  3. partial class InfoForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InfoForm));
  29. this.yesbtn = new System.Windows.Forms.Button();
  30. this.msg = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // yesbtn
  34. //
  35. this.yesbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  36. this.yesbtn.BackColor = System.Drawing.Color.DodgerBlue;
  37. this.yesbtn.DialogResult = System.Windows.Forms.DialogResult.Yes;
  38. this.yesbtn.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  39. this.yesbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  40. this.yesbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  41. this.yesbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  42. this.yesbtn.ForeColor = System.Drawing.Color.White;
  43. this.yesbtn.Location = new System.Drawing.Point(379, 512);
  44. this.yesbtn.Name = "yesbtn";
  45. this.yesbtn.Size = new System.Drawing.Size(120, 39);
  46. this.yesbtn.TabIndex = 32;
  47. this.yesbtn.Tag = "themeable";
  48. this.yesbtn.Text = "OK";
  49. this.yesbtn.UseVisualStyleBackColor = false;
  50. this.yesbtn.Click += new System.EventHandler(this.yesbtn_Click);
  51. //
  52. // msg
  53. //
  54. this.msg.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  55. this.msg.Location = new System.Drawing.Point(12, 9);
  56. this.msg.Name = "msg";
  57. this.msg.Size = new System.Drawing.Size(487, 500);
  58. this.msg.TabIndex = 33;
  59. this.msg.Text = "Integrator info";
  60. //
  61. // Info
  62. //
  63. this.AcceptButton = this.yesbtn;
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  66. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  67. this.CancelButton = this.yesbtn;
  68. this.ClientSize = new System.Drawing.Size(511, 563);
  69. this.Controls.Add(this.msg);
  70. this.Controls.Add(this.yesbtn);
  71. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  72. this.ForeColor = System.Drawing.Color.White;
  73. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  74. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  75. this.MaximizeBox = false;
  76. this.MinimizeBox = false;
  77. this.Name = "Info";
  78. this.ShowIcon = false;
  79. this.ShowInTaskbar = false;
  80. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  81. this.Load += new System.EventHandler(this.Info_Load);
  82. this.ResumeLayout(false);
  83. }
  84. #endregion
  85. private System.Windows.Forms.Button yesbtn;
  86. private System.Windows.Forms.Label msg;
  87. }
  88. }