97 lines
4.0 KiB
C#
97 lines
4.0 KiB
C#
namespace WinFormsProject
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.customCheckedListBox1 = new WinFormsLibrary.CustomCheckedListBox();
|
|
this.Button_Fill = new System.Windows.Forms.Button();
|
|
this.Button_Clear = new System.Windows.Forms.Button();
|
|
this.Button_GetChosenValues = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// customCheckedListBox1
|
|
//
|
|
this.customCheckedListBox1.Location = new System.Drawing.Point(21, 21);
|
|
this.customCheckedListBox1.Name = "customCheckedListBox1";
|
|
this.customCheckedListBox1.Selected = "";
|
|
this.customCheckedListBox1.Size = new System.Drawing.Size(333, 141);
|
|
this.customCheckedListBox1.TabIndex = 0;
|
|
//
|
|
// Button_Fill
|
|
//
|
|
this.Button_Fill.Location = new System.Drawing.Point(130, 141);
|
|
this.Button_Fill.Name = "Button_Fill";
|
|
this.Button_Fill.Size = new System.Drawing.Size(106, 45);
|
|
this.Button_Fill.TabIndex = 1;
|
|
this.Button_Fill.Text = "Заполнить";
|
|
this.Button_Fill.UseVisualStyleBackColor = true;
|
|
this.Button_Fill.Click += new System.EventHandler(this.Button_Fill_Click);
|
|
//
|
|
// Button_Clear
|
|
//
|
|
this.Button_Clear.Location = new System.Drawing.Point(130, 206);
|
|
this.Button_Clear.Name = "Button_Clear";
|
|
this.Button_Clear.Size = new System.Drawing.Size(106, 53);
|
|
this.Button_Clear.TabIndex = 2;
|
|
this.Button_Clear.Text = "Очистить";
|
|
this.Button_Clear.UseVisualStyleBackColor = true;
|
|
this.Button_Clear.Click += new System.EventHandler(this.Button_Clear_Click);
|
|
//
|
|
// Button_GetChosenValues
|
|
//
|
|
this.Button_GetChosenValues.Location = new System.Drawing.Point(130, 277);
|
|
this.Button_GetChosenValues.Name = "Button_GetChosenValues";
|
|
this.Button_GetChosenValues.Size = new System.Drawing.Size(106, 52);
|
|
this.Button_GetChosenValues.TabIndex = 3;
|
|
this.Button_GetChosenValues.Text = "Выбранные значения";
|
|
this.Button_GetChosenValues.UseVisualStyleBackColor = true;
|
|
this.Button_GetChosenValues.Click += new System.EventHandler(this.Button_GetChosenValues_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.Button_GetChosenValues);
|
|
this.Controls.Add(this.Button_Clear);
|
|
this.Controls.Add(this.Button_Fill);
|
|
this.Controls.Add(this.customCheckedListBox1);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private WinFormsLibrary.CustomCheckedListBox customCheckedListBox1;
|
|
private Button Button_Fill;
|
|
private Button Button_Clear;
|
|
private Button Button_GetChosenValues;
|
|
}
|
|
} |