99 lines
3.5 KiB
C#
99 lines
3.5 KiB
C#
namespace ProjectGSM.Forms
|
|
{
|
|
partial class FormDirectoryReport
|
|
{
|
|
/// <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()
|
|
{
|
|
checkBoxAdvocates = new CheckBox();
|
|
checkBoxClients = new CheckBox();
|
|
checkBoxCourts = new CheckBox();
|
|
buttonBuild = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// checkBoxAdvocates
|
|
//
|
|
checkBoxAdvocates.AutoSize = true;
|
|
checkBoxAdvocates.Location = new Point(58, 53);
|
|
checkBoxAdvocates.Name = "checkBoxAdvocates";
|
|
checkBoxAdvocates.Size = new Size(79, 19);
|
|
checkBoxAdvocates.TabIndex = 0;
|
|
checkBoxAdvocates.Text = "Адвокаты";
|
|
checkBoxAdvocates.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBoxClients
|
|
//
|
|
checkBoxClients.AutoSize = true;
|
|
checkBoxClients.Location = new Point(58, 78);
|
|
checkBoxClients.Name = "checkBoxClients";
|
|
checkBoxClients.Size = new Size(74, 19);
|
|
checkBoxClients.TabIndex = 1;
|
|
checkBoxClients.Text = "Клиенты";
|
|
checkBoxClients.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBoxCourts
|
|
//
|
|
checkBoxCourts.AutoSize = true;
|
|
checkBoxCourts.Location = new Point(58, 103);
|
|
checkBoxCourts.Name = "checkBoxCourts";
|
|
checkBoxCourts.Size = new Size(55, 19);
|
|
checkBoxCourts.TabIndex = 2;
|
|
checkBoxCourts.Text = "Суды";
|
|
checkBoxCourts.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonBuild
|
|
//
|
|
buttonBuild.Location = new Point(204, 74);
|
|
buttonBuild.Name = "buttonBuild";
|
|
buttonBuild.Size = new Size(151, 23);
|
|
buttonBuild.TabIndex = 3;
|
|
buttonBuild.Text = "Сформировать";
|
|
buttonBuild.UseVisualStyleBackColor = true;
|
|
buttonBuild.Click += ButtonBuild_Click;
|
|
//
|
|
// FormDirectoryReport
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(367, 173);
|
|
Controls.Add(buttonBuild);
|
|
Controls.Add(checkBoxCourts);
|
|
Controls.Add(checkBoxClients);
|
|
Controls.Add(checkBoxAdvocates);
|
|
Name = "FormDirectoryReport";
|
|
Text = "Выгрузка справочников";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private CheckBox checkBoxAdvocates;
|
|
private CheckBox checkBoxClients;
|
|
private CheckBox checkBoxCourts;
|
|
private Button buttonBuild;
|
|
}
|
|
} |