1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-06 00:13:33 +00:00
Files
MeshCentralRouter/FileTransferStatusForm.Designer.cs
2021-07-16 17:24:21 -07:00

136 lines
5.8 KiB
C#

namespace MeshCentralRouter
{
partial class FileTransferStatusForm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileTransferStatusForm));
this.cancelButton = new System.Windows.Forms.Button();
this.mainGroupBox = new System.Windows.Forms.GroupBox();
this.errorsTextBox = new System.Windows.Forms.TextBox();
this.mainLabel2 = new System.Windows.Forms.Label();
this.progressBar2 = new System.Windows.Forms.ProgressBar();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.mainLabel1 = new System.Windows.Forms.Label();
this.updateTimer = new System.Windows.Forms.Timer(this.components);
this.errorsGroupBox = new System.Windows.Forms.GroupBox();
this.mainGroupBox.SuspendLayout();
this.errorsGroupBox.SuspendLayout();
this.SuspendLayout();
//
// cancelButton
//
resources.ApplyResources(this.cancelButton, "cancelButton");
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Name = "cancelButton";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// mainGroupBox
//
resources.ApplyResources(this.mainGroupBox, "mainGroupBox");
this.mainGroupBox.Controls.Add(this.mainLabel2);
this.mainGroupBox.Controls.Add(this.progressBar2);
this.mainGroupBox.Controls.Add(this.progressBar1);
this.mainGroupBox.Controls.Add(this.mainLabel1);
this.mainGroupBox.Name = "mainGroupBox";
this.mainGroupBox.TabStop = false;
//
// errorsTextBox
//
resources.ApplyResources(this.errorsTextBox, "errorsTextBox");
this.errorsTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.errorsTextBox.Name = "errorsTextBox";
this.errorsTextBox.ReadOnly = true;
//
// mainLabel2
//
resources.ApplyResources(this.mainLabel2, "mainLabel2");
this.mainLabel2.Name = "mainLabel2";
//
// progressBar2
//
resources.ApplyResources(this.progressBar2, "progressBar2");
this.progressBar2.Name = "progressBar2";
//
// progressBar1
//
resources.ApplyResources(this.progressBar1, "progressBar1");
this.progressBar1.Name = "progressBar1";
//
// mainLabel1
//
resources.ApplyResources(this.mainLabel1, "mainLabel1");
this.mainLabel1.Name = "mainLabel1";
//
// updateTimer
//
this.updateTimer.Interval = 500;
this.updateTimer.Tick += new System.EventHandler(this.updateTimer_Tick);
//
// errorsGroupBox
//
this.errorsGroupBox.Controls.Add(this.errorsTextBox);
resources.ApplyResources(this.errorsGroupBox, "errorsGroupBox");
this.errorsGroupBox.Name = "errorsGroupBox";
this.errorsGroupBox.TabStop = false;
//
// FileTransferStatusForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelButton;
this.Controls.Add(this.errorsGroupBox);
this.Controls.Add(this.mainGroupBox);
this.Controls.Add(this.cancelButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FileTransferStatusForm";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FileTransferStatusForm_FormClosing);
this.Load += new System.EventHandler(this.FileTransferStatusForm_Load);
this.mainGroupBox.ResumeLayout(false);
this.errorsGroupBox.ResumeLayout(false);
this.errorsGroupBox.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.GroupBox mainGroupBox;
private System.Windows.Forms.ProgressBar progressBar2;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Label mainLabel1;
private System.Windows.Forms.Timer updateTimer;
private System.Windows.Forms.Label mainLabel2;
private System.Windows.Forms.TextBox errorsTextBox;
private System.Windows.Forms.GroupBox errorsGroupBox;
}
}