97 lines
2.7 KiB
C#
97 lines
2.7 KiB
C#
namespace TestsComponents
|
|
{
|
|
partial class FormTestComponents
|
|
{
|
|
/// <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()
|
|
{
|
|
userCheckedListBox = new WinFormsLibrary1.UserCheckedListBox();
|
|
buttonClear = new Button();
|
|
ButtonShowItems = new Button();
|
|
textBoxItems = new TextBox();
|
|
SuspendLayout();
|
|
//
|
|
// userCheckedListBox
|
|
//
|
|
userCheckedListBox.Location = new Point(0, 0);
|
|
userCheckedListBox.Name = "userCheckedListBox";
|
|
userCheckedListBox.SelectedValue = "";
|
|
userCheckedListBox.Size = new Size(263, 170);
|
|
userCheckedListBox.TabIndex = 0;
|
|
userCheckedListBox.SelectedValueChanged += UserCheckedListBox_SelectedValueChanged;
|
|
//
|
|
// buttonClear
|
|
//
|
|
buttonClear.Location = new Point(0, 176);
|
|
buttonClear.Name = "buttonClear";
|
|
buttonClear.Size = new Size(263, 29);
|
|
buttonClear.TabIndex = 2;
|
|
buttonClear.Text = "Очистить";
|
|
buttonClear.UseVisualStyleBackColor = true;
|
|
buttonClear.Click += buttonClear_Click;
|
|
//
|
|
// ButtonShowItems
|
|
//
|
|
ButtonShowItems.Location = new Point(0, 211);
|
|
ButtonShowItems.Name = "ButtonShowItems";
|
|
ButtonShowItems.Size = new Size(263, 29);
|
|
ButtonShowItems.TabIndex = 3;
|
|
ButtonShowItems.Text = "Показать";
|
|
ButtonShowItems.UseVisualStyleBackColor = true;
|
|
ButtonShowItems.Click += ButtonShowItems_Click;
|
|
//
|
|
// textBoxItems
|
|
//
|
|
textBoxItems.Location = new Point(0, 246);
|
|
textBoxItems.Multiline = true;
|
|
textBoxItems.Name = "textBoxItems";
|
|
textBoxItems.Size = new Size(263, 87);
|
|
textBoxItems.TabIndex = 4;
|
|
//
|
|
// FormTestComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(textBoxItems);
|
|
Controls.Add(ButtonShowItems);
|
|
Controls.Add(buttonClear);
|
|
Controls.Add(userCheckedListBox);
|
|
Name = "FormTestComponents";
|
|
Text = "FormTestComponents ";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private WinFormsLibrary1.UserCheckedListBox userCheckedListBox;
|
|
private Button buttonClear;
|
|
private Button ButtonShowItems;
|
|
private TextBox textBoxItems;
|
|
}
|
|
}
|