98 lines
4.1 KiB
C#
98 lines
4.1 KiB
C#
|
namespace AbazovAppView
|
|||
|
{
|
|||
|
partial class FormTest
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.abazovCheckedListBox = new AbazovViewComponents.Components.AbazovCheckedListBox();
|
|||
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|||
|
this.buttonClear = new System.Windows.Forms.Button();
|
|||
|
this.buttonSelected = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// abazovCheckedListBox
|
|||
|
//
|
|||
|
this.abazovCheckedListBox.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.abazovCheckedListBox.Name = "abazovCheckedListBox";
|
|||
|
this.abazovCheckedListBox.selectedItem = null;
|
|||
|
this.abazovCheckedListBox.Size = new System.Drawing.Size(170, 134);
|
|||
|
this.abazovCheckedListBox.TabIndex = 0;
|
|||
|
this.abazovCheckedListBox.SelectedItemChange += new System.Action<string>(this.abazovCheckedListBox_SelectedItemChange);
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
this.buttonAdd.Location = new System.Drawing.Point(12, 143);
|
|||
|
this.buttonAdd.Name = "buttonAdd";
|
|||
|
this.buttonAdd.Size = new System.Drawing.Size(150, 29);
|
|||
|
this.buttonAdd.TabIndex = 1;
|
|||
|
this.buttonAdd.Text = "Добавить";
|
|||
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|||
|
//
|
|||
|
// buttonClear
|
|||
|
//
|
|||
|
this.buttonClear.Location = new System.Drawing.Point(12, 178);
|
|||
|
this.buttonClear.Name = "buttonClear";
|
|||
|
this.buttonClear.Size = new System.Drawing.Size(150, 29);
|
|||
|
this.buttonClear.TabIndex = 2;
|
|||
|
this.buttonClear.Text = "Очистить";
|
|||
|
this.buttonClear.UseVisualStyleBackColor = true;
|
|||
|
this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
|
|||
|
//
|
|||
|
// buttonSelected
|
|||
|
//
|
|||
|
this.buttonSelected.Location = new System.Drawing.Point(12, 213);
|
|||
|
this.buttonSelected.Name = "buttonSelected";
|
|||
|
this.buttonSelected.Size = new System.Drawing.Size(150, 48);
|
|||
|
this.buttonSelected.TabIndex = 3;
|
|||
|
this.buttonSelected.Text = "Выбранный элемент";
|
|||
|
this.buttonSelected.UseVisualStyleBackColor = true;
|
|||
|
this.buttonSelected.Click += new System.EventHandler(this.buttonSelected_Click);
|
|||
|
//
|
|||
|
// FormTest
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|||
|
this.Controls.Add(this.buttonSelected);
|
|||
|
this.Controls.Add(this.buttonClear);
|
|||
|
this.Controls.Add(this.buttonAdd);
|
|||
|
this.Controls.Add(this.abazovCheckedListBox);
|
|||
|
this.Name = "FormTest";
|
|||
|
this.Text = "FormTest";
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private AbazovViewComponents.Components.AbazovCheckedListBox abazovCheckedListBox;
|
|||
|
private Button buttonAdd;
|
|||
|
private Button buttonClear;
|
|||
|
private Button buttonSelected;
|
|||
|
}
|
|||
|
}
|