mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
02ded9ba71
Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
90 lines
3.5 KiB
C#
90 lines
3.5 KiB
C#
|
|
namespace XenAdmin.Dialogs
|
|
{
|
|
partial class ClientIdDialog
|
|
{
|
|
/// <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(ClientIdDialog));
|
|
this.clientIdControl1 = new XenAdmin.Controls.ClientIdControl();
|
|
this.buttonOk = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.flowLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// clientIdControl1
|
|
//
|
|
resources.ApplyResources(this.clientIdControl1, "clientIdControl1");
|
|
this.clientIdControl1.Name = "clientIdControl1";
|
|
//
|
|
// buttonOk
|
|
//
|
|
resources.ApplyResources(this.buttonOk, "buttonOk");
|
|
this.buttonOk.Name = "buttonOk";
|
|
this.buttonOk.UseVisualStyleBackColor = true;
|
|
this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// flowLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
|
|
this.flowLayoutPanel1.Controls.Add(this.buttonCancel);
|
|
this.flowLayoutPanel1.Controls.Add(this.buttonOk);
|
|
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
|
//
|
|
// ClientIdDialog
|
|
//
|
|
this.AcceptButton = this.buttonOk;
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.CancelButton = this.buttonCancel;
|
|
this.Controls.Add(this.clientIdControl1);
|
|
this.Controls.Add(this.flowLayoutPanel1);
|
|
this.Name = "ClientIdDialog";
|
|
this.flowLayoutPanel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Controls.ClientIdControl clientIdControl1;
|
|
private System.Windows.Forms.Button buttonOk;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
}
|
|
}
|
|
|