72 lines
2.4 KiB
C#
72 lines
2.4 KiB
C#
namespace WinFormsLibrary
|
||
{
|
||
partial class DropDownList
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.comboBox = new System.Windows.Forms.ComboBox();
|
||
this.labelDropDownList = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// comboBox
|
||
//
|
||
this.comboBox.FormattingEnabled = true;
|
||
this.comboBox.Location = new System.Drawing.Point(3, 60);
|
||
this.comboBox.Name = "comboBox";
|
||
this.comboBox.Size = new System.Drawing.Size(182, 33);
|
||
this.comboBox.TabIndex = 0;
|
||
this.comboBox.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedIndexChanged);
|
||
//
|
||
// labelDropDownList
|
||
//
|
||
this.labelDropDownList.AutoSize = true;
|
||
this.labelDropDownList.Location = new System.Drawing.Point(3, 12);
|
||
this.labelDropDownList.Name = "labelDropDownList";
|
||
this.labelDropDownList.Size = new System.Drawing.Size(184, 25);
|
||
this.labelDropDownList.TabIndex = 1;
|
||
this.labelDropDownList.Text = "Выпадающий список";
|
||
//
|
||
// DropDownList
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.labelDropDownList);
|
||
this.Controls.Add(this.comboBox);
|
||
this.Name = "DropDownList";
|
||
this.Size = new System.Drawing.Size(199, 105);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private ComboBox comboBox;
|
||
private Label labelDropDownList;
|
||
}
|
||
}
|