2013-06-24 13:41:48 +02:00
|
|
|
namespace XenAdmin.Dialogs
|
|
|
|
{
|
|
|
|
partial class ThreeButtonDialog
|
|
|
|
{
|
|
|
|
/// <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(ThreeButtonDialog));
|
|
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
|
|
this.pictureBoxIcon = new System.Windows.Forms.PictureBox();
|
|
|
|
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
|
|
this.button3 = new System.Windows.Forms.Button();
|
|
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
|
|
this.labelMessage = new System.Windows.Forms.LinkLabel();
|
2016-11-17 14:35:31 +01:00
|
|
|
this.checkBoxOption = new System.Windows.Forms.CheckBox();
|
2020-02-28 14:40:25 +01:00
|
|
|
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
|
2013-06-24 13:41:48 +02:00
|
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).BeginInit();
|
|
|
|
this.flowLayoutPanel1.SuspendLayout();
|
|
|
|
this.SuspendLayout();
|
|
|
|
//
|
|
|
|
// tableLayoutPanel1
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
|
|
this.tableLayoutPanel1.Controls.Add(this.pictureBoxIcon, 0, 0);
|
2020-02-28 14:40:25 +01:00
|
|
|
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 1, 3);
|
2013-06-24 13:41:48 +02:00
|
|
|
this.tableLayoutPanel1.Controls.Add(this.labelMessage, 1, 0);
|
2020-02-28 14:40:25 +01:00
|
|
|
this.tableLayoutPanel1.Controls.Add(this.checkBoxOption, 1, 2);
|
|
|
|
this.tableLayoutPanel1.Controls.Add(this.linkLabel1, 1, 1);
|
2013-06-24 13:41:48 +02:00
|
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
|
|
//
|
|
|
|
// pictureBoxIcon
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.pictureBoxIcon, "pictureBoxIcon");
|
|
|
|
this.pictureBoxIcon.Name = "pictureBoxIcon";
|
|
|
|
this.pictureBoxIcon.TabStop = false;
|
|
|
|
//
|
|
|
|
// flowLayoutPanel1
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
|
|
|
|
this.flowLayoutPanel1.Controls.Add(this.button3);
|
|
|
|
this.flowLayoutPanel1.Controls.Add(this.button2);
|
|
|
|
this.flowLayoutPanel1.Controls.Add(this.button1);
|
|
|
|
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
|
|
|
//
|
|
|
|
// button3
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.button3, "button3");
|
|
|
|
this.button3.Name = "button3";
|
|
|
|
this.button3.UseVisualStyleBackColor = true;
|
|
|
|
this.button3.Click += new System.EventHandler(this.button3_Click);
|
|
|
|
//
|
|
|
|
// button2
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.button2, "button2");
|
|
|
|
this.button2.Name = "button2";
|
|
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
|
|
this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
|
|
//
|
|
|
|
// button1
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.button1, "button1");
|
|
|
|
this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
|
|
this.button1.Name = "button1";
|
|
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
|
|
//
|
|
|
|
// labelMessage
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.labelMessage, "labelMessage");
|
|
|
|
this.labelMessage.Name = "labelMessage";
|
|
|
|
this.labelMessage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.labelMessage_LinkClicked);
|
|
|
|
//
|
2016-11-17 14:35:31 +01:00
|
|
|
// checkBoxOption
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.checkBoxOption, "checkBoxOption");
|
|
|
|
this.checkBoxOption.Name = "checkBoxOption";
|
|
|
|
this.checkBoxOption.UseVisualStyleBackColor = true;
|
|
|
|
//
|
2020-02-28 14:40:25 +01:00
|
|
|
// linkLabel1
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this.linkLabel1, "linkLabel1");
|
|
|
|
this.linkLabel1.Name = "linkLabel1";
|
|
|
|
this.linkLabel1.TabStop = true;
|
|
|
|
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
|
|
|
|
//
|
2013-06-24 13:41:48 +02:00
|
|
|
// ThreeButtonDialog
|
|
|
|
//
|
|
|
|
resources.ApplyResources(this, "$this");
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
|
|
this.HelpButton = false;
|
|
|
|
this.Name = "ThreeButtonDialog";
|
|
|
|
this.ShowIcon = false;
|
|
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ThreeButtonDialog_FormClosing);
|
|
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).EndInit();
|
|
|
|
this.flowLayoutPanel1.ResumeLayout(false);
|
|
|
|
this.flowLayoutPanel1.PerformLayout();
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
|
|
private System.Windows.Forms.PictureBox pictureBoxIcon;
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
|
|
private System.Windows.Forms.Button button2;
|
|
|
|
private System.Windows.Forms.Button button3;
|
|
|
|
private System.Windows.Forms.LinkLabel labelMessage;
|
2016-11-17 14:35:31 +01:00
|
|
|
private System.Windows.Forms.CheckBox checkBoxOption;
|
2020-02-28 14:40:25 +01:00
|
|
|
private System.Windows.Forms.LinkLabel linkLabel1;
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
}
|