DepartmentProject/DepartmentPortal/Security/SecurityWindowsDesktop/SpecialControls/BackupControl.Designer.cs

167 lines
7.2 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 SecurityWindowsDesktop.SpecialControls
{
partial class BackupControl
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором компонентов
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
this.groupBoxSaveBackup = new System.Windows.Forms.GroupBox();
this.buttonCreateBackup = new System.Windows.Forms.Button();
this.checkBoxCreateArchive = new System.Windows.Forms.CheckBox();
this.checkBoxFullLoad = new System.Windows.Forms.CheckBox();
this.buttonSelectFolder = new System.Windows.Forms.Button();
this.textBoxFolderName = new System.Windows.Forms.TextBox();
this.labelFolderName = new System.Windows.Forms.Label();
this.toolStripHeader = new System.Windows.Forms.ToolStrip();
this.toolStripButtonClose = new System.Windows.Forms.ToolStripButton();
this.groupBoxSaveBackup.SuspendLayout();
this.toolStripHeader.SuspendLayout();
this.SuspendLayout();
//
// groupBoxSaveBackup
//
this.groupBoxSaveBackup.Controls.Add(this.buttonCreateBackup);
this.groupBoxSaveBackup.Controls.Add(this.checkBoxCreateArchive);
this.groupBoxSaveBackup.Controls.Add(this.checkBoxFullLoad);
this.groupBoxSaveBackup.Controls.Add(this.buttonSelectFolder);
this.groupBoxSaveBackup.Controls.Add(this.textBoxFolderName);
this.groupBoxSaveBackup.Controls.Add(this.labelFolderName);
this.groupBoxSaveBackup.Location = new System.Drawing.Point(0, 28);
this.groupBoxSaveBackup.Name = "groupBoxSaveBackup";
this.groupBoxSaveBackup.Size = new System.Drawing.Size(496, 100);
this.groupBoxSaveBackup.TabIndex = 0;
this.groupBoxSaveBackup.TabStop = false;
this.groupBoxSaveBackup.Text = "Сохранение в бекап";
//
// buttonCreateBackup
//
this.buttonCreateBackup.Location = new System.Drawing.Point(385, 71);
this.buttonCreateBackup.Name = "buttonCreateBackup";
this.buttonCreateBackup.Size = new System.Drawing.Size(99, 23);
this.buttonCreateBackup.TabIndex = 5;
this.buttonCreateBackup.Text = "Выгрузить";
this.buttonCreateBackup.UseVisualStyleBackColor = true;
this.buttonCreateBackup.Click += new System.EventHandler(this.ButtonCreateBackup_Click);
//
// checkBoxCreateArchive
//
this.checkBoxCreateArchive.AutoSize = true;
this.checkBoxCreateArchive.Location = new System.Drawing.Point(262, 55);
this.checkBoxCreateArchive.Name = "checkBoxCreateArchive";
this.checkBoxCreateArchive.Size = new System.Drawing.Size(104, 19);
this.checkBoxCreateArchive.TabIndex = 4;
this.checkBoxCreateArchive.Text = "Создать архив";
this.checkBoxCreateArchive.UseVisualStyleBackColor = true;
//
// checkBoxFullLoad
//
this.checkBoxFullLoad.AutoSize = true;
this.checkBoxFullLoad.Location = new System.Drawing.Point(120, 55);
this.checkBoxFullLoad.Name = "checkBoxFullLoad";
this.checkBoxFullLoad.Size = new System.Drawing.Size(121, 19);
this.checkBoxFullLoad.TabIndex = 3;
this.checkBoxFullLoad.Text = "Полная выгрузка";
this.checkBoxFullLoad.UseVisualStyleBackColor = true;
//
// buttonSelectFolder
//
this.buttonSelectFolder.Location = new System.Drawing.Point(385, 26);
this.buttonSelectFolder.Name = "buttonSelectFolder";
this.buttonSelectFolder.Size = new System.Drawing.Size(99, 23);
this.buttonSelectFolder.TabIndex = 2;
this.buttonSelectFolder.Text = "Выбрать папку";
this.buttonSelectFolder.UseVisualStyleBackColor = true;
this.buttonSelectFolder.Click += new System.EventHandler(this.ButtonSelectFolder_Click);
//
// textBoxFolderName
//
this.textBoxFolderName.Location = new System.Drawing.Point(107, 26);
this.textBoxFolderName.Name = "textBoxFolderName";
this.textBoxFolderName.Size = new System.Drawing.Size(272, 23);
this.textBoxFolderName.TabIndex = 1;
//
// labelFolderName
//
this.labelFolderName.AutoSize = true;
this.labelFolderName.Location = new System.Drawing.Point(16, 29);
this.labelFolderName.Name = "labelFolderName";
this.labelFolderName.Size = new System.Drawing.Size(85, 15);
this.labelFolderName.TabIndex = 0;
this.labelFolderName.Text = "Путь до папки";
//
// toolStripHeader
//
this.toolStripHeader.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButtonClose});
this.toolStripHeader.Location = new System.Drawing.Point(0, 0);
this.toolStripHeader.Name = "toolStripHeader";
this.toolStripHeader.Size = new System.Drawing.Size(708, 25);
this.toolStripHeader.TabIndex = 1;
this.toolStripHeader.Text = "toolStrip1";
this.toolStripHeader.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.ToolStripHeader_ItemClicked);
//
// toolStripButtonClose
//
this.toolStripButtonClose.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripButtonClose.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonClose.Image = global::SecurityWindowsDesktop.Properties.Resources.Close;
this.toolStripButtonClose.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonClose.Name = "toolStripButtonClose";
this.toolStripButtonClose.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonClose.Text = "Закрыть";
//
// BackupControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.toolStripHeader);
this.Controls.Add(this.groupBoxSaveBackup);
this.Name = "BackupControl";
this.Size = new System.Drawing.Size(708, 486);
this.groupBoxSaveBackup.ResumeLayout(false);
this.groupBoxSaveBackup.PerformLayout();
this.toolStripHeader.ResumeLayout(false);
this.toolStripHeader.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBoxSaveBackup;
private System.Windows.Forms.Label labelFolderName;
private System.Windows.Forms.TextBox textBoxFolderName;
private System.Windows.Forms.Button buttonSelectFolder;
private System.Windows.Forms.CheckBox checkBoxCreateArchive;
private System.Windows.Forms.Button buttonCreateBackup;
private System.Windows.Forms.CheckBox checkBoxFullLoad;
private System.Windows.Forms.ToolStrip toolStripHeader;
private System.Windows.Forms.ToolStripButton toolStripButtonClose;
}
}