HelperForm.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. namespace Optimizer
  2. {
  3. partial class HelperForm
  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.lblMessage = new System.Windows.Forms.Label();
  29. this.btnYes = new MoonButton();
  30. this.btnNo = new MoonButton();
  31. this.SuspendLayout();
  32. //
  33. // lblMessage
  34. //
  35. this.lblMessage.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  36. this.lblMessage.Location = new System.Drawing.Point(10, 7);
  37. this.lblMessage.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  38. this.lblMessage.Name = "lblMessage";
  39. this.lblMessage.Size = new System.Drawing.Size(432, 69);
  40. this.lblMessage.TabIndex = 0;
  41. this.lblMessage.Text = "Restart to apply changes?";
  42. //
  43. // btnYes
  44. //
  45. this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  46. this.btnYes.BackColor = System.Drawing.Color.DodgerBlue;
  47. this.btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
  48. this.btnYes.FlatAppearance.BorderSize = 0;
  49. this.btnYes.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  50. this.btnYes.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  51. this.btnYes.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  52. this.btnYes.ForeColor = System.Drawing.Color.White;
  53. this.btnYes.Location = new System.Drawing.Point(309, 136);
  54. this.btnYes.Margin = new System.Windows.Forms.Padding(2);
  55. this.btnYes.Name = "btnYes";
  56. this.btnYes.Size = new System.Drawing.Size(145, 31);
  57. this.btnYes.TabIndex = 31;
  58. this.btnYes.Tag = "themeable";
  59. this.btnYes.Text = "Yes";
  60. this.btnYes.UseVisualStyleBackColor = false;
  61. this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
  62. //
  63. // btnNo
  64. //
  65. this.btnNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  66. this.btnNo.BackColor = System.Drawing.Color.DodgerBlue;
  67. this.btnNo.DialogResult = System.Windows.Forms.DialogResult.No;
  68. this.btnNo.FlatAppearance.BorderSize = 0;
  69. this.btnNo.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  70. this.btnNo.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  71. this.btnNo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  72. this.btnNo.ForeColor = System.Drawing.Color.White;
  73. this.btnNo.Location = new System.Drawing.Point(160, 136);
  74. this.btnNo.Margin = new System.Windows.Forms.Padding(2);
  75. this.btnNo.Name = "btnNo";
  76. this.btnNo.Size = new System.Drawing.Size(145, 31);
  77. this.btnNo.TabIndex = 32;
  78. this.btnNo.Tag = "themeable";
  79. this.btnNo.Text = "No";
  80. this.btnNo.UseVisualStyleBackColor = false;
  81. this.btnNo.Click += new System.EventHandler(this.btnNo_Click);
  82. //
  83. // HelperForm
  84. //
  85. this.AcceptButton = this.btnYes;
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  88. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  89. this.CancelButton = this.btnNo;
  90. this.ClientSize = new System.Drawing.Size(463, 177);
  91. this.Controls.Add(this.btnNo);
  92. this.Controls.Add(this.btnYes);
  93. this.Controls.Add(this.lblMessage);
  94. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  95. this.ForeColor = System.Drawing.Color.White;
  96. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  97. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  98. this.MaximizeBox = false;
  99. this.MinimizeBox = false;
  100. this.Name = "HelperForm";
  101. this.ShowIcon = false;
  102. this.ShowInTaskbar = false;
  103. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  104. this.Load += new System.EventHandler(this.Messager_Load);
  105. this.ResumeLayout(false);
  106. }
  107. #endregion
  108. private System.Windows.Forms.Label lblMessage;
  109. private MoonButton btnYes;
  110. private MoonButton btnNo;
  111. }
  112. }