108 lines
4.0 KiB
C#
108 lines
4.0 KiB
C#
namespace WinForms
|
|
{
|
|
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()
|
|
{
|
|
buttonClearList = new Button();
|
|
buttonFillCheckedList = new Button();
|
|
checkedListBoxControl = new PutincevLibrary.CheckedListBoxControl();
|
|
treeViewControl = new PutincevLibrary.TreeViewControl();
|
|
dateTimePickerControl = new PutincevLibrary.DateTimePickerControl();
|
|
SuspendLayout();
|
|
//
|
|
// buttonClearList
|
|
//
|
|
buttonClearList.Location = new Point(150, 149);
|
|
buttonClearList.Margin = new Padding(3, 4, 3, 4);
|
|
buttonClearList.Name = "buttonClearList";
|
|
buttonClearList.Size = new Size(86, 31);
|
|
buttonClearList.TabIndex = 4;
|
|
buttonClearList.Text = "Очистить";
|
|
buttonClearList.UseVisualStyleBackColor = true;
|
|
buttonClearList.Click += buttonClearList_Click;
|
|
//
|
|
// buttonFillCheckedList
|
|
//
|
|
buttonFillCheckedList.Location = new Point(44, 149);
|
|
buttonFillCheckedList.Margin = new Padding(3, 4, 3, 4);
|
|
buttonFillCheckedList.Name = "buttonFillCheckedList";
|
|
buttonFillCheckedList.Size = new Size(100, 31);
|
|
buttonFillCheckedList.TabIndex = 3;
|
|
buttonFillCheckedList.Text = "Заполнить";
|
|
buttonFillCheckedList.UseVisualStyleBackColor = true;
|
|
buttonFillCheckedList.Click += buttonFillCheckedList_Click;
|
|
//
|
|
// checkedListBoxControl
|
|
//
|
|
checkedListBoxControl.Location = new Point(48, 14);
|
|
checkedListBoxControl.Name = "checkedListBoxControl";
|
|
checkedListBoxControl.Size = new Size(188, 117);
|
|
checkedListBoxControl.TabIndex = 5;
|
|
//
|
|
// treeViewControl
|
|
//
|
|
treeViewControl.hierarchy = null;
|
|
treeViewControl.Location = new Point(570, 12);
|
|
treeViewControl.Name = "treeViewControl";
|
|
treeViewControl.Size = new Size(188, 188);
|
|
treeViewControl.TabIndex = 7;
|
|
//
|
|
// dateTimePickerControl
|
|
//
|
|
dateTimePickerControl.Location = new Point(278, 38);
|
|
dateTimePickerControl.MaxValue = null;
|
|
dateTimePickerControl.MinValue = null;
|
|
dateTimePickerControl.Name = "dateTimePickerControl";
|
|
dateTimePickerControl.Size = new Size(188, 32);
|
|
dateTimePickerControl.TabIndex = 8;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(dateTimePickerControl);
|
|
Controls.Add(treeViewControl);
|
|
Controls.Add(checkedListBoxControl);
|
|
Controls.Add(buttonClearList);
|
|
Controls.Add(buttonFillCheckedList);
|
|
Name = "Form1";
|
|
Text = "Form1";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonClearList;
|
|
private Button buttonFillCheckedList;
|
|
private PutincevLibrary.CheckedListBoxControl checkedListBoxControl;
|
|
private PutincevLibrary.TreeViewControl treeViewControl;
|
|
private PutincevLibrary.DateTimePickerControl dateTimePickerControl;
|
|
}
|
|
}
|