12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- namespace Optimizer
- {
- partial class InfoForm
- {
- /// <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()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InfoForm));
- this.yesbtn = new System.Windows.Forms.Button();
- this.msg = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // yesbtn
- //
- this.yesbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.yesbtn.BackColor = System.Drawing.Color.DodgerBlue;
- this.yesbtn.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.yesbtn.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
- this.yesbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
- this.yesbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
- this.yesbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.yesbtn.ForeColor = System.Drawing.Color.White;
- this.yesbtn.Location = new System.Drawing.Point(379, 512);
- this.yesbtn.Name = "yesbtn";
- this.yesbtn.Size = new System.Drawing.Size(120, 39);
- this.yesbtn.TabIndex = 32;
- this.yesbtn.Tag = "themeable";
- this.yesbtn.Text = "OK";
- this.yesbtn.UseVisualStyleBackColor = false;
- this.yesbtn.Click += new System.EventHandler(this.yesbtn_Click);
- //
- // msg
- //
- this.msg.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
- this.msg.Location = new System.Drawing.Point(12, 9);
- this.msg.Name = "msg";
- this.msg.Size = new System.Drawing.Size(487, 500);
- this.msg.TabIndex = 33;
- this.msg.Text = "Integrator info";
- //
- // Info
- //
- this.AcceptButton = this.yesbtn;
- this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
- 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.yesbtn;
- this.ClientSize = new System.Drawing.Size(511, 563);
- this.Controls.Add(this.msg);
- this.Controls.Add(this.yesbtn);
- this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.ForeColor = System.Drawing.Color.White;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "Info";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Load += new System.EventHandler(this.Info_Load);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button yesbtn;
- private System.Windows.Forms.Label msg;
- }
- }
|