123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- namespace Optimizer
- {
- partial class HelperForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.lblMessage = new System.Windows.Forms.Label();
- this.btnYes = new MoonButton();
- this.btnNo = new MoonButton();
- this.SuspendLayout();
- //
- // lblMessage
- //
- this.lblMessage.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
- this.lblMessage.Location = new System.Drawing.Point(10, 7);
- this.lblMessage.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.lblMessage.Name = "lblMessage";
- this.lblMessage.Size = new System.Drawing.Size(432, 69);
- this.lblMessage.TabIndex = 0;
- this.lblMessage.Text = "Restart to apply changes?";
- //
- // btnYes
- //
- this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnYes.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.btnYes.FlatAppearance.BorderSize = 0;
- this.btnYes.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnYes.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnYes.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnYes.ForeColor = System.Drawing.Color.White;
- this.btnYes.Location = new System.Drawing.Point(309, 136);
- this.btnYes.Margin = new System.Windows.Forms.Padding(2);
- this.btnYes.Name = "btnYes";
- this.btnYes.Size = new System.Drawing.Size(145, 31);
- this.btnYes.TabIndex = 31;
- this.btnYes.Tag = "themeable";
- this.btnYes.Text = "Yes";
- this.btnYes.UseVisualStyleBackColor = false;
- this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
- //
- // btnNo
- //
- this.btnNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnNo.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnNo.DialogResult = System.Windows.Forms.DialogResult.No;
- this.btnNo.FlatAppearance.BorderSize = 0;
- this.btnNo.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.btnNo.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.btnNo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnNo.ForeColor = System.Drawing.Color.White;
- this.btnNo.Location = new System.Drawing.Point(160, 136);
- this.btnNo.Margin = new System.Windows.Forms.Padding(2);
- this.btnNo.Name = "btnNo";
- this.btnNo.Size = new System.Drawing.Size(145, 31);
- this.btnNo.TabIndex = 32;
- this.btnNo.Tag = "themeable";
- this.btnNo.Text = "No";
- this.btnNo.UseVisualStyleBackColor = false;
- this.btnNo.Click += new System.EventHandler(this.btnNo_Click);
- //
- // HelperForm
- //
- this.AcceptButton = this.btnYes;
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.CancelButton = this.btnNo;
- this.ClientSize = new System.Drawing.Size(463, 177);
- this.Controls.Add(this.btnNo);
- this.Controls.Add(this.btnYes);
- this.Controls.Add(this.lblMessage);
- this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
- this.ForeColor = System.Drawing.Color.White;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "HelperForm";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Load += new System.EventHandler(this.Messager_Load);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Label lblMessage;
- private MoonButton btnYes;
- private MoonButton btnNo;
- }
- }
|