HelperForm.Designer.cs 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 System.Windows.Forms.Button();
  30. this.btnNo = new System.Windows.Forms.Button();
  31. this.chkPrint = new System.Windows.Forms.CheckBox();
  32. this.chkSensors = new System.Windows.Forms.CheckBox();
  33. this.SuspendLayout();
  34. //
  35. // lblMessage
  36. //
  37. this.lblMessage.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  38. this.lblMessage.Location = new System.Drawing.Point(10, 7);
  39. this.lblMessage.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  40. this.lblMessage.Name = "lblMessage";
  41. this.lblMessage.Size = new System.Drawing.Size(432, 69);
  42. this.lblMessage.TabIndex = 0;
  43. this.lblMessage.Text = "Restart to apply changes?";
  44. //
  45. // btnYes
  46. //
  47. this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  48. this.btnYes.BackColor = System.Drawing.Color.DodgerBlue;
  49. this.btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
  50. this.btnYes.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  51. this.btnYes.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  52. this.btnYes.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  53. this.btnYes.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  54. this.btnYes.ForeColor = System.Drawing.Color.White;
  55. this.btnYes.Location = new System.Drawing.Point(358, 128);
  56. this.btnYes.Margin = new System.Windows.Forms.Padding(2);
  57. this.btnYes.Name = "btnYes";
  58. this.btnYes.Size = new System.Drawing.Size(96, 31);
  59. this.btnYes.TabIndex = 31;
  60. this.btnYes.Tag = "themeable";
  61. this.btnYes.Text = "Yes";
  62. this.btnYes.UseVisualStyleBackColor = false;
  63. this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
  64. //
  65. // btnNo
  66. //
  67. this.btnNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  68. this.btnNo.BackColor = System.Drawing.Color.DodgerBlue;
  69. this.btnNo.DialogResult = System.Windows.Forms.DialogResult.No;
  70. this.btnNo.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  71. this.btnNo.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  72. this.btnNo.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  73. this.btnNo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  74. this.btnNo.ForeColor = System.Drawing.Color.White;
  75. this.btnNo.Location = new System.Drawing.Point(257, 128);
  76. this.btnNo.Margin = new System.Windows.Forms.Padding(2);
  77. this.btnNo.Name = "btnNo";
  78. this.btnNo.Size = new System.Drawing.Size(96, 31);
  79. this.btnNo.TabIndex = 32;
  80. this.btnNo.Tag = "themeable";
  81. this.btnNo.Text = "No";
  82. this.btnNo.UseVisualStyleBackColor = false;
  83. this.btnNo.Click += new System.EventHandler(this.btnNo_Click);
  84. //
  85. // chkPrint
  86. //
  87. this.chkPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  88. this.chkPrint.AutoSize = true;
  89. this.chkPrint.Checked = true;
  90. this.chkPrint.CheckState = System.Windows.Forms.CheckState.Checked;
  91. this.chkPrint.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  92. this.chkPrint.Location = new System.Drawing.Point(10, 117);
  93. this.chkPrint.Margin = new System.Windows.Forms.Padding(2);
  94. this.chkPrint.Name = "chkPrint";
  95. this.chkPrint.Size = new System.Drawing.Size(211, 19);
  96. this.chkPrint.TabIndex = 33;
  97. this.chkPrint.Text = "I use Print Service, do not disable it";
  98. this.chkPrint.UseVisualStyleBackColor = true;
  99. this.chkPrint.Visible = false;
  100. //
  101. // chkSensors
  102. //
  103. this.chkSensors.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  104. this.chkSensors.AutoSize = true;
  105. this.chkSensors.Checked = true;
  106. this.chkSensors.CheckState = System.Windows.Forms.CheckState.Checked;
  107. this.chkSensors.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  108. this.chkSensors.Location = new System.Drawing.Point(10, 140);
  109. this.chkSensors.Margin = new System.Windows.Forms.Padding(2);
  110. this.chkSensors.Name = "chkSensors";
  111. this.chkSensors.Size = new System.Drawing.Size(226, 19);
  112. this.chkSensors.TabIndex = 34;
  113. this.chkSensors.Text = "This is a tablet, do not disable Sensors";
  114. this.chkSensors.UseVisualStyleBackColor = true;
  115. this.chkSensors.Visible = false;
  116. //
  117. // HelperForm
  118. //
  119. this.AcceptButton = this.btnYes;
  120. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  121. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  122. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  123. this.CancelButton = this.btnNo;
  124. this.ClientSize = new System.Drawing.Size(463, 169);
  125. this.Controls.Add(this.chkSensors);
  126. this.Controls.Add(this.chkPrint);
  127. this.Controls.Add(this.btnNo);
  128. this.Controls.Add(this.btnYes);
  129. this.Controls.Add(this.lblMessage);
  130. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  131. this.ForeColor = System.Drawing.Color.White;
  132. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  133. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  134. this.MaximizeBox = false;
  135. this.MinimizeBox = false;
  136. this.Name = "HelperForm";
  137. this.ShowIcon = false;
  138. this.ShowInTaskbar = false;
  139. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  140. this.Load += new System.EventHandler(this.Messager_Load);
  141. this.ResumeLayout(false);
  142. this.PerformLayout();
  143. }
  144. #endregion
  145. private System.Windows.Forms.Label lblMessage;
  146. private System.Windows.Forms.Button btnYes;
  147. private System.Windows.Forms.Button btnNo;
  148. private System.Windows.Forms.CheckBox chkPrint;
  149. private System.Windows.Forms.CheckBox chkSensors;
  150. }
  151. }