212 lines
8.2 KiB
C#
Raw Normal View History

2024-09-15 03:28:24 +04:00
namespace WinFormForTest
{
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()
{
2024-09-22 18:39:37 +04:00
components = new System.ComponentModel.Container();
2024-09-15 03:28:24 +04:00
customComboBox1 = new KOP_Labs.CustomComboBox();
customListBox1 = new KOP_Labs.CustomListBox();
customTree1 = new KOP_Labs.CustomTree();
buttonClear = new Button();
buttonEnter = new Button();
buttonGet = new Button();
labelItem = new Label();
buttonCheck = new Button();
checkBoxValid = new CheckBox();
2024-09-22 18:39:37 +04:00
pdfImage1 = new CustomComponents.NonVisualComponents.PdfImage(components);
buttonPdfImage = new Button();
openFileDialog1 = new OpenFileDialog();
buttonPdfTable = new Button();
pdfTable1 = new CustomComponents.NonVisualComponents.PdfTable(components);
buttonPdfChart = new Button();
pdfPieChart1 = new CustomComponents.NonVisualComponents.PdfPieChart(components);
2024-09-15 03:28:24 +04:00
SuspendLayout();
//
// customComboBox1
//
customComboBox1.Location = new Point(264, 50);
customComboBox1.Max = 20;
customComboBox1.Min = 5;
customComboBox1.Name = "customComboBox1";
customComboBox1.Size = new Size(301, 125);
customComboBox1.TabIndex = 0;
//
// customListBox1
//
customListBox1.Location = new Point(12, 23);
customListBox1.Name = "customListBox1";
customListBox1.SelectedElement = "";
customListBox1.Size = new Size(231, 187);
customListBox1.TabIndex = 1;
//
// customTree1
//
customTree1.Hierarcy = null;
customTree1.Location = new Point(615, 50);
customTree1.Name = "customTree1";
customTree1.Size = new Size(309, 384);
customTree1.TabIndex = 2;
//
// buttonClear
//
buttonClear.Location = new Point(12, 216);
buttonClear.Name = "buttonClear";
buttonClear.Size = new Size(161, 29);
buttonClear.TabIndex = 3;
buttonClear.Text = "Очистить список";
buttonClear.UseVisualStyleBackColor = true;
buttonClear.Click += buttonClear_Click;
//
// buttonEnter
//
buttonEnter.Location = new Point(12, 251);
buttonEnter.Name = "buttonEnter";
buttonEnter.Size = new Size(183, 29);
buttonEnter.TabIndex = 4;
buttonEnter.Text = "Добавить элементы";
buttonEnter.UseVisualStyleBackColor = true;
buttonEnter.Click += buttonEnter_Click;
//
// buttonGet
//
buttonGet.Location = new Point(12, 286);
buttonGet.Name = "buttonGet";
buttonGet.Size = new Size(94, 29);
buttonGet.TabIndex = 5;
buttonGet.Text = "Получить";
buttonGet.UseVisualStyleBackColor = true;
buttonGet.Click += buttonGet_Click;
//
// labelItem
//
labelItem.AutoSize = true;
labelItem.Location = new Point(123, 290);
labelItem.Name = "labelItem";
labelItem.Size = new Size(59, 20);
labelItem.TabIndex = 6;
labelItem.Text = "Объект";
//
// buttonCheck
//
buttonCheck.Location = new Point(273, 181);
buttonCheck.Name = "buttonCheck";
buttonCheck.Size = new Size(94, 29);
buttonCheck.TabIndex = 7;
buttonCheck.Text = "Проверить";
buttonCheck.UseVisualStyleBackColor = true;
buttonCheck.Click += buttonCheck_Click;
//
// checkBoxValid
//
checkBoxValid.AutoSize = true;
checkBoxValid.Location = new Point(417, 181);
checkBoxValid.Name = "checkBoxValid";
checkBoxValid.Size = new Size(100, 24);
checkBoxValid.TabIndex = 9;
checkBoxValid.Text = "Проверка";
checkBoxValid.UseVisualStyleBackColor = true;
//
2024-09-22 18:39:37 +04:00
// buttonPdfImage
//
buttonPdfImage.Location = new Point(12, 522);
buttonPdfImage.Name = "buttonPdfImage";
buttonPdfImage.Size = new Size(208, 29);
buttonPdfImage.TabIndex = 10;
buttonPdfImage.Text = "Создать pdf с картинкой";
buttonPdfImage.UseVisualStyleBackColor = true;
buttonPdfImage.Click += buttonPdfImage_Click;
//
// openFileDialog1
//
openFileDialog1.FileName = "openFileDialog1";
openFileDialog1.Multiselect = true;
//
// buttonPdfTable
//
buttonPdfTable.Location = new Point(304, 522);
buttonPdfTable.Name = "buttonPdfTable";
buttonPdfTable.Size = new Size(213, 29);
buttonPdfTable.TabIndex = 11;
buttonPdfTable.Text = "Создать pdf с таблицей";
buttonPdfTable.UseVisualStyleBackColor = true;
buttonPdfTable.Click += buttonPdfTable_Click;
//
// buttonPdfChart
//
buttonPdfChart.Location = new Point(602, 522);
buttonPdfChart.Name = "buttonPdfChart";
buttonPdfChart.Size = new Size(224, 29);
buttonPdfChart.TabIndex = 12;
buttonPdfChart.Text = "Создать pdf с диаграммой";
buttonPdfChart.UseVisualStyleBackColor = true;
buttonPdfChart.Click += buttonPdfChart_Click;
//
2024-09-15 03:28:24 +04:00
// Form1
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1042, 573);
2024-09-22 18:39:37 +04:00
Controls.Add(buttonPdfChart);
Controls.Add(buttonPdfTable);
Controls.Add(buttonPdfImage);
2024-09-15 03:28:24 +04:00
Controls.Add(checkBoxValid);
Controls.Add(buttonCheck);
Controls.Add(labelItem);
Controls.Add(buttonGet);
Controls.Add(buttonEnter);
Controls.Add(buttonClear);
Controls.Add(customTree1);
Controls.Add(customListBox1);
Controls.Add(customComboBox1);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
private KOP_Labs.CustomComboBox customComboBox1;
private KOP_Labs.CustomListBox customListBox1;
private KOP_Labs.CustomTree customTree1;
private Button buttonClear;
private Button buttonEnter;
private Button buttonGet;
private Label labelItem;
private Button buttonCheck;
private CheckBox checkBoxValid;
2024-09-22 18:39:37 +04:00
private CustomComponents.NonVisualComponents.PdfImage pdfImage1;
private Button buttonPdfImage;
private OpenFileDialog openFileDialog1;
private Button buttonPdfTable;
private CustomComponents.NonVisualComponents.PdfTable pdfTable1;
private Button buttonPdfChart;
private CustomComponents.NonVisualComponents.PdfPieChart pdfPieChart1;
2024-09-15 03:28:24 +04:00
}
}