mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-30 07:40:13 +01:00
d128abe4f9
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
59 lines
2.0 KiB
C#
59 lines
2.0 KiB
C#
namespace XenAdmin.Controls.MainWindowControls
|
|
{
|
|
partial class NavigationView
|
|
{
|
|
/// <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 Component 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()
|
|
{
|
|
this.searchTextBox = new XenAdmin.Controls.SearchTextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// searchTextBox
|
|
//
|
|
this.searchTextBox.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.searchTextBox.Location = new System.Drawing.Point(0, 0);
|
|
this.searchTextBox.Name = "searchTextBox";
|
|
this.searchTextBox.Size = new System.Drawing.Size(210, 23);
|
|
this.searchTextBox.TabIndex = 3;
|
|
this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged);
|
|
//
|
|
// NavigationView
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.searchTextBox);
|
|
this.Name = "NavigationView";
|
|
this.Size = new System.Drawing.Size(210, 288);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private SearchTextBox searchTextBox;
|
|
}
|
|
}
|