InfoForm.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. this.btnOK = new System.Windows.Forms.Button();
  29. this.txtInfo = new System.Windows.Forms.TextBox();
  30. this.SuspendLayout();
  31. //
  32. // btnOK
  33. //
  34. this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  35. this.btnOK.BackColor = System.Drawing.Color.DodgerBlue;
  36. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.Yes;
  37. this.btnOK.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  38. this.btnOK.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  39. this.btnOK.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  40. this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  41. this.btnOK.ForeColor = System.Drawing.Color.White;
  42. this.btnOK.Location = new System.Drawing.Point(487, 354);
  43. this.btnOK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  44. this.btnOK.Name = "btnOK";
  45. this.btnOK.Size = new System.Drawing.Size(96, 31);
  46. this.btnOK.TabIndex = 32;
  47. this.btnOK.Tag = "themeable";
  48. this.btnOK.Text = "OK";
  49. this.btnOK.UseVisualStyleBackColor = false;
  50. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  51. //
  52. // txtInfo
  53. //
  54. this.txtInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  55. this.txtInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
  56. this.txtInfo.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  57. this.txtInfo.ForeColor = System.Drawing.Color.White;
  58. this.txtInfo.Location = new System.Drawing.Point(10, 10);
  59. this.txtInfo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  60. this.txtInfo.Multiline = true;
  61. this.txtInfo.Name = "txtInfo";
  62. this.txtInfo.ReadOnly = true;
  63. this.txtInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  64. this.txtInfo.Size = new System.Drawing.Size(572, 331);
  65. this.txtInfo.TabIndex = 33;
  66. this.txtInfo.Text = "Integrator InfoBox";
  67. //
  68. // InfoForm
  69. //
  70. this.AcceptButton = this.btnOK;
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  73. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  74. this.CancelButton = this.btnOK;
  75. this.ClientSize = new System.Drawing.Size(593, 394);
  76. this.Controls.Add(this.txtInfo);
  77. this.Controls.Add(this.btnOK);
  78. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  79. this.ForeColor = System.Drawing.Color.White;
  80. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  81. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  82. this.MaximizeBox = false;
  83. this.MinimizeBox = false;
  84. this.Name = "InfoForm";
  85. this.ShowIcon = false;
  86. this.ShowInTaskbar = false;
  87. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  88. this.Load += new System.EventHandler(this.Info_Load);
  89. this.ResumeLayout(false);
  90. this.PerformLayout();
  91. }
  92. #endregion
  93. private System.Windows.Forms.Button btnOK;
  94. private System.Windows.Forms.TextBox txtInfo;
  95. }
  96. }