xenadmin/XenAdmin/Dialogs/BondProperties.Designer.cs
Konstantina Chremmou 7b66b3a6f5 CP-6317: Importing from branch clearwater-ln.
# HG changeset patch
# User vetrivelc <vetrivel.chinnasamy@citrix.com>
# Date 1374148735 -19800
# Node ID cd999f68c24b4f1391e9a2012c4b0466910045c6
# Parent  a1e482150cd280292f10f7ce14666b70066da2fe
Reverted changes (to fix build break for now)

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2013-09-26 13:19:14 +01:00

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;
}
}