mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
bd36a85bff
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
128 lines
5.8 KiB
C#
128 lines
5.8 KiB
C#
namespace XenAdmin.Dialogs
|
|
{
|
|
partial class IscsiChoicesDialog
|
|
{
|
|
/// <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(IscsiChoicesDialog));
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.pictureBoxIcon = new System.Windows.Forms.PictureBox();
|
|
this.flowLayoutPanelButtons = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonFormat = new System.Windows.Forms.Button();
|
|
this.buttonReattach = new System.Windows.Forms.Button();
|
|
this.labelMessage = new System.Windows.Forms.Label();
|
|
this.labelSRinfo = new System.Windows.Forms.Label();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).BeginInit();
|
|
this.flowLayoutPanelButtons.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.pictureBoxIcon, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanelButtons, 1, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.labelMessage, 1, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.labelSRinfo, 1, 1);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// pictureBoxIcon
|
|
//
|
|
resources.ApplyResources(this.pictureBoxIcon, "pictureBoxIcon");
|
|
this.pictureBoxIcon.Name = "pictureBoxIcon";
|
|
this.pictureBoxIcon.TabStop = false;
|
|
//
|
|
// flowLayoutPanelButtons
|
|
//
|
|
resources.ApplyResources(this.flowLayoutPanelButtons, "flowLayoutPanelButtons");
|
|
this.flowLayoutPanelButtons.Controls.Add(this.buttonCancel);
|
|
this.flowLayoutPanelButtons.Controls.Add(this.buttonFormat);
|
|
this.flowLayoutPanelButtons.Controls.Add(this.buttonReattach);
|
|
this.flowLayoutPanelButtons.Name = "flowLayoutPanelButtons";
|
|
//
|
|
// buttonCancel
|
|
//
|
|
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
|
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonFormat
|
|
//
|
|
resources.ApplyResources(this.buttonFormat, "buttonFormat");
|
|
this.buttonFormat.DialogResult = System.Windows.Forms.DialogResult.No;
|
|
this.buttonFormat.Name = "buttonFormat";
|
|
this.buttonFormat.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonReattach
|
|
//
|
|
resources.ApplyResources(this.buttonReattach, "buttonReattach");
|
|
this.buttonReattach.DialogResult = System.Windows.Forms.DialogResult.Yes;
|
|
this.buttonReattach.Name = "buttonReattach";
|
|
this.buttonReattach.UseVisualStyleBackColor = true;
|
|
//
|
|
// labelMessage
|
|
//
|
|
resources.ApplyResources(this.labelMessage, "labelMessage");
|
|
this.labelMessage.Name = "labelMessage";
|
|
//
|
|
// labelSRinfo
|
|
//
|
|
resources.ApplyResources(this.labelSRinfo, "labelSRinfo");
|
|
this.labelSRinfo.Name = "labelSRinfo";
|
|
//
|
|
// IscsiChoicesDialog
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.CancelButton = this.buttonCancel;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "IscsiChoicesDialog";
|
|
this.ShowIcon = false;
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).EndInit();
|
|
this.flowLayoutPanelButtons.ResumeLayout(false);
|
|
this.flowLayoutPanelButtons.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Button buttonReattach;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.PictureBox pictureBoxIcon;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanelButtons;
|
|
private System.Windows.Forms.Label labelMessage;
|
|
private System.Windows.Forms.Button buttonFormat;
|
|
private System.Windows.Forms.Label labelSRinfo;
|
|
}
|
|
} |