ProjectLib/ProjectLibrary/Forms/FDocReport.Designer.cs

100 lines
3.7 KiB
C#
Raw Normal View History

2024-12-19 15:31:39 +04:00
namespace ProjectLibrary.Forms
{
2024-12-20 01:07:20 +04:00
partial class FDocReport
2024-12-19 15:31:39 +04:00
{
/// <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()
{
checkBoxBooks = new CheckBox();
checkBoxReaders = new CheckBox();
checkBoxIncludeTicketExtensions = new CheckBox();
buttonCreate = new Button();
SuspendLayout();
//
// checkBoxBooks
//
checkBoxBooks.AutoSize = true;
checkBoxBooks.Location = new Point(54, 34);
checkBoxBooks.Name = "checkBoxBooks";
checkBoxBooks.Size = new Size(73, 24);
checkBoxBooks.TabIndex = 0;
checkBoxBooks.Text = "Книги";
checkBoxBooks.UseVisualStyleBackColor = true;
//
// checkBoxReaders
//
checkBoxReaders.AutoSize = true;
checkBoxReaders.Location = new Point(54, 101);
checkBoxReaders.Name = "checkBoxReaders";
checkBoxReaders.Size = new Size(95, 24);
checkBoxReaders.TabIndex = 1;
checkBoxReaders.Text = "Читатели";
checkBoxReaders.UseVisualStyleBackColor = true;
//
// checkBoxIncludeTicketExtensions
//
checkBoxIncludeTicketExtensions.AutoSize = true;
checkBoxIncludeTicketExtensions.Location = new Point(54, 170);
checkBoxIncludeTicketExtensions.Name = "checkBoxIncludeTicketExtensions";
checkBoxIncludeTicketExtensions.Size = new Size(114, 24);
checkBoxIncludeTicketExtensions.TabIndex = 2;
checkBoxIncludeTicketExtensions.Text = "Библиотеки";
checkBoxIncludeTicketExtensions.UseVisualStyleBackColor = true;
//
// buttonCreate
//
buttonCreate.BackColor = SystemColors.Control;
buttonCreate.Location = new Point(278, 101);
buttonCreate.Name = "buttonCreate";
buttonCreate.Size = new Size(133, 29);
buttonCreate.TabIndex = 3;
buttonCreate.Text = "Сформировать";
buttonCreate.UseVisualStyleBackColor = false;
buttonCreate.Click += ButtonCreate_Click;
//
// FormDocReport
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(484, 236);
Controls.Add(buttonCreate);
Controls.Add(checkBoxIncludeTicketExtensions);
Controls.Add(checkBoxReaders);
Controls.Add(checkBoxBooks);
Name = "FormDocReport";
Text = "Выгрузка справочников";
ResumeLayout(false);
PerformLayout();
}
#endregion
private CheckBox checkBoxBooks;
private CheckBox checkBoxReaders;
private CheckBox checkBoxIncludeTicketExtensions;
private Button buttonCreate;
}
}