mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
78 lines
3.0 KiB
C#
78 lines
3.0 KiB
C#
|
namespace XenAdmin.Dialogs
|
|||
|
{
|
|||
|
partial class BondProperties
|
|||
|
{
|
|||
|
/// <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(BondProperties));
|
|||
|
this.CancelBtn = new System.Windows.Forms.Button();
|
|||
|
this.AcceptBtn = new System.Windows.Forms.Button();
|
|||
|
this.Details = new XenAdmin.Controls.BondDetails();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// CancelBtn
|
|||
|
//
|
|||
|
resources.ApplyResources(this.CancelBtn, "CancelBtn");
|
|||
|
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.CancelBtn.Name = "CancelBtn";
|
|||
|
this.CancelBtn.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// AcceptBtn
|
|||
|
//
|
|||
|
resources.ApplyResources(this.AcceptBtn, "AcceptBtn");
|
|||
|
this.AcceptBtn.Name = "AcceptBtn";
|
|||
|
this.AcceptBtn.UseVisualStyleBackColor = true;
|
|||
|
this.AcceptBtn.Click += new System.EventHandler(this.AcceptBtn_Click);
|
|||
|
//
|
|||
|
// Details
|
|||
|
//
|
|||
|
resources.ApplyResources(this.Details, "Details");
|
|||
|
this.Details.BackColor = System.Drawing.Color.Transparent;
|
|||
|
this.Details.Name = "Details";
|
|||
|
this.Details.ValidChanged += new System.EventHandler(this.Details_ValidChanged);
|
|||
|
//
|
|||
|
// BondProperties
|
|||
|
//
|
|||
|
this.AcceptButton = this.AcceptBtn;
|
|||
|
resources.ApplyResources(this, "$this");
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|||
|
this.CancelButton = this.CancelBtn;
|
|||
|
this.Controls.Add(this.Details);
|
|||
|
this.Controls.Add(this.CancelBtn);
|
|||
|
this.Controls.Add(this.AcceptBtn);
|
|||
|
this.Name = "BondProperties";
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button CancelBtn;
|
|||
|
private System.Windows.Forms.Button AcceptBtn;
|
|||
|
public XenAdmin.Controls.BondDetails Details;
|
|||
|
}
|
|||
|
}
|