59 lines
2.2 KiB
C#
59 lines
2.2 KiB
C#
namespace WinFormsLibrary1
|
||
{
|
||
partial class UserControlStringsListBox
|
||
{
|
||
/// <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()
|
||
{
|
||
listBoxStrings = new ListBox();
|
||
SuspendLayout();
|
||
//
|
||
// listBoxStrings
|
||
//
|
||
listBoxStrings.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
||
listBoxStrings.FormattingEnabled = true;
|
||
listBoxStrings.ItemHeight = 15;
|
||
listBoxStrings.Location = new Point(3, 3);
|
||
listBoxStrings.Name = "listBoxStrings";
|
||
listBoxStrings.Size = new Size(144, 139);
|
||
listBoxStrings.TabIndex = 0;
|
||
listBoxStrings.SelectedValueChanged += listBoxStrings_SelectedValueChanged;
|
||
//
|
||
// UserControlStringsListBox
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
Controls.Add(listBoxStrings);
|
||
Name = "UserControlStringsListBox";
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private ListBox listBoxStrings;
|
||
}
|
||
}
|