xenadmin/XenAdmin/Controls/ChevronButton.Designer.cs

83 lines
3.3 KiB
C#
Raw Normal View History

using System;
namespace XenAdmin.Controls
{
partial class ChevronButton
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChevronButton));
this.label1 = new System.Windows.Forms.Label();
this.pictureBoxButton = new System.Windows.Forms.PictureBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxButton)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// pictureBoxButton
//
this.pictureBoxButton.Cursor = System.Windows.Forms.Cursors.Hand;
this.pictureBoxButton.Image = global::XenAdmin.Properties.Resources.PDChevronRight;
resources.ApplyResources(this.pictureBoxButton, "pictureBoxButton");
this.pictureBoxButton.Name = "pictureBoxButton";
this.pictureBoxButton.TabStop = false;
//
// tableLayoutPanel1
//
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
this.tableLayoutPanel1.Controls.Add(this.pictureBoxButton, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.label1, 1, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// ChevronButton
//
resources.ApplyResources(this, "$this");
this.Controls.Add(this.tableLayoutPanel1);
this.Cursor = System.Windows.Forms.Cursors.Default;
this.DoubleBuffered = true;
this.Name = "ChevronButton";
((System.ComponentModel.ISupportInitialize)(this.pictureBoxButton)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.PictureBox pictureBoxButton;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
}
}