1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-25 15:20:10 +00:00
msfs-popout-panel-manager/UI/ConfirmDialogForm.Designer.cs
2021-12-19 21:31:17 -05:00

119 lines
No EOL
5.6 KiB
C#

namespace MSFSPopoutPanelManager.UI
{
partial class ConfirmDialogForm
{
/// <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.buttonYes = new System.Windows.Forms.Button();
this.buttonNo = new System.Windows.Forms.Button();
this.labelMessage = new DarkUI.Controls.DarkLabel();
this.buttonOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// buttonYes
//
this.buttonYes.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
this.buttonYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
this.buttonYes.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.buttonYes.ForeColor = System.Drawing.Color.White;
this.buttonYes.Location = new System.Drawing.Point(268, 93);
this.buttonYes.Name = "buttonYes";
this.buttonYes.Size = new System.Drawing.Size(118, 35);
this.buttonYes.TabIndex = 22;
this.buttonYes.Text = "Yes";
this.buttonYes.UseVisualStyleBackColor = false;
this.buttonYes.Click += new System.EventHandler(this.buttonYes_Click);
//
// buttonNo
//
this.buttonNo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
this.buttonNo.DialogResult = System.Windows.Forms.DialogResult.No;
this.buttonNo.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.buttonNo.ForeColor = System.Drawing.Color.White;
this.buttonNo.Location = new System.Drawing.Point(410, 93);
this.buttonNo.Name = "buttonNo";
this.buttonNo.Size = new System.Drawing.Size(118, 35);
this.buttonNo.TabIndex = 23;
this.buttonNo.Text = "No";
this.buttonNo.UseVisualStyleBackColor = false;
this.buttonNo.Click += new System.EventHandler(this.buttonNo_Click);
//
// labelMessage
//
this.labelMessage.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.labelMessage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
this.labelMessage.Location = new System.Drawing.Point(34, 25);
this.labelMessage.Name = "labelMessage";
this.labelMessage.Size = new System.Drawing.Size(494, 65);
this.labelMessage.TabIndex = 2;
this.labelMessage.Text = "Message";
//
// buttonOK
//
this.buttonOK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonOK.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.buttonOK.ForeColor = System.Drawing.Color.White;
this.buttonOK.Location = new System.Drawing.Point(410, 93);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(118, 35);
this.buttonOK.TabIndex = 20;
this.buttonOK.Text = "OK";
this.buttonOK.UseVisualStyleBackColor = false;
this.buttonOK.Visible = false;
//
// ConfirmDialogForm
//
this.AcceptButton = this.buttonYes;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonNo;
this.ClientSize = new System.Drawing.Size(562, 140);
this.ControlBox = false;
this.Controls.Add(this.buttonOK);
this.Controls.Add(this.buttonNo);
this.Controls.Add(this.buttonYes);
this.Controls.Add(this.labelMessage);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ConfirmDialogForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Title";
this.TopMost = true;
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonYes;
private System.Windows.Forms.Button buttonNo;
private DarkUI.Controls.DarkLabel labelMessage;
private System.Windows.Forms.Button buttonOK;
}
}