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>
138 lines
5.6 KiB
C#
138 lines
5.6 KiB
C#
namespace XenAdmin.Dialogs
|
|
{
|
|
partial class SetStorageLinkLicenseServerDialog
|
|
{
|
|
/// <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(SetStorageLinkLicenseServerDialog));
|
|
this.table = new System.Windows.Forms.TableLayoutPanel();
|
|
this.txtPort = new System.Windows.Forms.TextBox();
|
|
this.lblPort = new System.Windows.Forms.Label();
|
|
this.lblHost = new System.Windows.Forms.Label();
|
|
this.txtHost = new System.Windows.Forms.TextBox();
|
|
this.flow = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.lblMain = new System.Windows.Forms.Label();
|
|
this.table.SuspendLayout();
|
|
this.flow.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// table
|
|
//
|
|
resources.ApplyResources(this.table, "table");
|
|
this.table.Controls.Add(this.txtPort, 1, 2);
|
|
this.table.Controls.Add(this.lblPort, 0, 2);
|
|
this.table.Controls.Add(this.lblHost, 0, 1);
|
|
this.table.Controls.Add(this.txtHost, 1, 1);
|
|
this.table.Controls.Add(this.flow, 0, 3);
|
|
this.table.Controls.Add(this.lblMain, 0, 0);
|
|
this.table.Name = "table";
|
|
//
|
|
// txtPort
|
|
//
|
|
resources.ApplyResources(this.txtPort, "txtPort");
|
|
this.txtPort.Name = "txtPort";
|
|
this.txtPort.TextChanged += new System.EventHandler(this.PortNumTextBox_TextChanged);
|
|
//
|
|
// lblPort
|
|
//
|
|
resources.ApplyResources(this.lblPort, "lblPort");
|
|
this.lblPort.Name = "lblPort";
|
|
//
|
|
// lblHost
|
|
//
|
|
resources.ApplyResources(this.lblHost, "lblHost");
|
|
this.lblHost.Name = "lblHost";
|
|
//
|
|
// txtHost
|
|
//
|
|
resources.ApplyResources(this.txtHost, "txtHost");
|
|
this.txtHost.Name = "txtHost";
|
|
this.txtHost.TextChanged += new System.EventHandler(this.HostnameTextBox_TextChanged);
|
|
//
|
|
// flow
|
|
//
|
|
resources.ApplyResources(this.flow, "flow");
|
|
this.table.SetColumnSpan(this.flow, 2);
|
|
this.flow.Controls.Add(this.btnCancel);
|
|
this.flow.Controls.Add(this.btnOK);
|
|
this.flow.Name = "flow";
|
|
//
|
|
// btnCancel
|
|
//
|
|
resources.ApplyResources(this.btnCancel, "btnCancel");
|
|
this.btnCancel.CausesValidation = false;
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btn_Click);
|
|
//
|
|
// btnOK
|
|
//
|
|
resources.ApplyResources(this.btnOK, "btnOK");
|
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btn_Click);
|
|
//
|
|
// lblMain
|
|
//
|
|
resources.ApplyResources(this.lblMain, "lblMain");
|
|
this.table.SetColumnSpan(this.lblMain, 2);
|
|
this.lblMain.Name = "lblMain";
|
|
//
|
|
// SetStorageLinkLicenseServerDialog
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.CancelButton = this.btnCancel;
|
|
this.Controls.Add(this.table);
|
|
this.HelpButton = false;
|
|
this.Name = "SetStorageLinkLicenseServerDialog";
|
|
this.table.ResumeLayout(false);
|
|
this.table.PerformLayout();
|
|
this.flow.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel table;
|
|
private System.Windows.Forms.Label lblMain;
|
|
private System.Windows.Forms.FlowLayoutPanel flow;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Label lblHost;
|
|
private System.Windows.Forms.Label lblPort;
|
|
private System.Windows.Forms.TextBox txtHost;
|
|
private System.Windows.Forms.TextBox txtPort;
|
|
}
|
|
} |