DepartmentProject/DepartmentPortal/Department/DepartmentWindowsDesktop/EntityControls/StudentGroup/FormSaveToFile.Designer.cs

165 lines
7.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace DepartmentWindowsDesktop.EntityControls.StudentGroup
{
partial class FormSaveToFile
{
/// <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()
{
this.labelFileName = new System.Windows.Forms.Label();
this.textBoxFileName = new System.Windows.Forms.TextBox();
this.buttonSelect = new System.Windows.Forms.Button();
this.checkBoxShowNumberOfBook = new System.Windows.Forms.CheckBox();
this.checkBoxUnionFIO = new System.Windows.Forms.CheckBox();
this.checkBoxUseInitials = new System.Windows.Forms.CheckBox();
this.checkBoxShowStatus = new System.Windows.Forms.CheckBox();
this.checkBoxShowInfo = new System.Windows.Forms.CheckBox();
this.buttonSave = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labelFileName
//
this.labelFileName.AutoSize = true;
this.labelFileName.Location = new System.Drawing.Point(22, 24);
this.labelFileName.Name = "labelFileName";
this.labelFileName.Size = new System.Drawing.Size(90, 15);
this.labelFileName.TabIndex = 0;
this.labelFileName.Text = "Путь до файла:";
//
// textBoxFileName
//
this.textBoxFileName.Location = new System.Drawing.Point(118, 21);
this.textBoxFileName.Name = "textBoxFileName";
this.textBoxFileName.Size = new System.Drawing.Size(300, 23);
this.textBoxFileName.TabIndex = 1;
//
// buttonSelect
//
this.buttonSelect.Location = new System.Drawing.Point(338, 50);
this.buttonSelect.Name = "buttonSelect";
this.buttonSelect.Size = new System.Drawing.Size(80, 23);
this.buttonSelect.TabIndex = 2;
this.buttonSelect.Text = "Выбрать";
this.buttonSelect.UseVisualStyleBackColor = true;
this.buttonSelect.Click += new System.EventHandler(this.ButtonSelect_Click);
//
// checkBoxShowNumberOfBook
//
this.checkBoxShowNumberOfBook.AutoSize = true;
this.checkBoxShowNumberOfBook.Location = new System.Drawing.Point(29, 73);
this.checkBoxShowNumberOfBook.Name = "checkBoxShowNumberOfBook";
this.checkBoxShowNumberOfBook.Size = new System.Drawing.Size(216, 19);
this.checkBoxShowNumberOfBook.TabIndex = 3;
this.checkBoxShowNumberOfBook.Text = "Выводить номер зачетной книжки";
this.checkBoxShowNumberOfBook.UseVisualStyleBackColor = true;
//
// checkBoxUnionFIO
//
this.checkBoxUnionFIO.AutoSize = true;
this.checkBoxUnionFIO.Location = new System.Drawing.Point(29, 112);
this.checkBoxUnionFIO.Name = "checkBoxUnionFIO";
this.checkBoxUnionFIO.Size = new System.Drawing.Size(204, 19);
this.checkBoxUnionFIO.TabIndex = 4;
this.checkBoxUnionFIO.Text = "Выводить ФИО в одной колонке";
this.checkBoxUnionFIO.UseVisualStyleBackColor = true;
this.checkBoxUnionFIO.CheckedChanged += new System.EventHandler(this.CheckBoxUnionFIO_CheckedChanged);
//
// checkBoxUseInitials
//
this.checkBoxUseInitials.AutoSize = true;
this.checkBoxUseInitials.Enabled = false;
this.checkBoxUseInitials.Location = new System.Drawing.Point(73, 148);
this.checkBoxUseInitials.Name = "checkBoxUseInitials";
this.checkBoxUseInitials.Size = new System.Drawing.Size(184, 19);
this.checkBoxUseInitials.TabIndex = 5;
this.checkBoxUseInitials.Text = "Выводить ФИО с иницалами";
this.checkBoxUseInitials.UseVisualStyleBackColor = true;
//
// checkBoxShowStatus
//
this.checkBoxShowStatus.AutoSize = true;
this.checkBoxShowStatus.Location = new System.Drawing.Point(29, 184);
this.checkBoxShowStatus.Name = "checkBoxShowStatus";
this.checkBoxShowStatus.Size = new System.Drawing.Size(116, 19);
this.checkBoxShowStatus.TabIndex = 6;
this.checkBoxShowStatus.Text = "Выводить статус";
this.checkBoxShowStatus.UseVisualStyleBackColor = true;
//
// checkBoxShowInfo
//
this.checkBoxShowInfo.AutoSize = true;
this.checkBoxShowInfo.Location = new System.Drawing.Point(29, 224);
this.checkBoxShowInfo.Name = "checkBoxShowInfo";
this.checkBoxShowInfo.Size = new System.Drawing.Size(135, 19);
this.checkBoxShowInfo.TabIndex = 7;
this.checkBoxShowInfo.Text = "Выводить описание";
this.checkBoxShowInfo.UseVisualStyleBackColor = true;
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(286, 196);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(101, 33);
this.buttonSave.TabIndex = 8;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// FormSaveToFile
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(438, 269);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.checkBoxShowInfo);
this.Controls.Add(this.checkBoxShowStatus);
this.Controls.Add(this.checkBoxUseInitials);
this.Controls.Add(this.checkBoxUnionFIO);
this.Controls.Add(this.checkBoxShowNumberOfBook);
this.Controls.Add(this.buttonSelect);
this.Controls.Add(this.textBoxFileName);
this.Controls.Add(this.labelFileName);
this.Name = "FormSaveToFile";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Сохранение в файл";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelFileName;
private System.Windows.Forms.TextBox textBoxFileName;
private System.Windows.Forms.Button buttonSelect;
private System.Windows.Forms.CheckBox checkBoxShowNumberOfBook;
private System.Windows.Forms.CheckBox checkBoxUnionFIO;
private System.Windows.Forms.CheckBox checkBoxUseInitials;
private System.Windows.Forms.CheckBox checkBoxShowStatus;
private System.Windows.Forms.CheckBox checkBoxShowInfo;
private System.Windows.Forms.Button buttonSave;
}
}