104 lines
3.6 KiB
C#
104 lines
3.6 KiB
C#
namespace LDBproject.AdditionalForms
|
|
{
|
|
partial class FullReportsF
|
|
{
|
|
/// <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()
|
|
{
|
|
BookChBox = new CheckBox();
|
|
EmployeeChBox = new CheckBox();
|
|
ReadersChBox = new CheckBox();
|
|
ConfBuildBtn = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// BookChBox
|
|
//
|
|
BookChBox.AutoSize = true;
|
|
BookChBox.ForeColor = Color.GreenYellow;
|
|
BookChBox.Location = new Point(58, 36);
|
|
BookChBox.Name = "BookChBox";
|
|
BookChBox.Size = new Size(87, 29);
|
|
BookChBox.TabIndex = 0;
|
|
BookChBox.Text = "Books";
|
|
BookChBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// EmployeeChBox
|
|
//
|
|
EmployeeChBox.AutoSize = true;
|
|
EmployeeChBox.ForeColor = Color.GreenYellow;
|
|
EmployeeChBox.Location = new Point(239, 36);
|
|
EmployeeChBox.Name = "EmployeeChBox";
|
|
EmployeeChBox.Size = new Size(113, 29);
|
|
EmployeeChBox.TabIndex = 1;
|
|
EmployeeChBox.Text = "Librarians";
|
|
EmployeeChBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// ReadersChBox
|
|
//
|
|
ReadersChBox.AutoSize = true;
|
|
ReadersChBox.ForeColor = Color.GreenYellow;
|
|
ReadersChBox.Location = new Point(455, 36);
|
|
ReadersChBox.Name = "ReadersChBox";
|
|
ReadersChBox.Size = new Size(100, 29);
|
|
ReadersChBox.TabIndex = 2;
|
|
ReadersChBox.Text = "Readers";
|
|
ReadersChBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// ConfBuildBtn
|
|
//
|
|
ConfBuildBtn.ForeColor = Color.DarkSlateBlue;
|
|
ConfBuildBtn.Location = new Point(58, 86);
|
|
ConfBuildBtn.Name = "ConfBuildBtn";
|
|
ConfBuildBtn.Size = new Size(497, 34);
|
|
ConfBuildBtn.TabIndex = 3;
|
|
ConfBuildBtn.Text = "Make report";
|
|
ConfBuildBtn.UseVisualStyleBackColor = true;
|
|
ConfBuildBtn.Click += ConfBuildBtn_Click;
|
|
//
|
|
// ReportF
|
|
//
|
|
AutoScaleDimensions = new SizeF(10F, 25F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.DarkSlateBlue;
|
|
ClientSize = new Size(610, 158);
|
|
Controls.Add(ConfBuildBtn);
|
|
Controls.Add(ReadersChBox);
|
|
Controls.Add(EmployeeChBox);
|
|
Controls.Add(BookChBox);
|
|
Name = "ReportF";
|
|
Text = "ReportF";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private CheckBox BookChBox;
|
|
private CheckBox EmployeeChBox;
|
|
private CheckBox ReadersChBox;
|
|
private Button ConfBuildBtn;
|
|
}
|
|
} |