namespace PlaylistManager
{
partial class frmProgress
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
lblFile = new Label();
prgStatus = new ProgressBar();
btnCancel = new Button();
SuspendLayout();
//
// lblFile
//
lblFile.AutoSize = true;
lblFile.Location = new Point(12, 9);
lblFile.Name = "lblFile";
lblFile.Size = new Size(56, 15);
lblFile.TabIndex = 0;
lblFile.Text = "Kopiere...";
//
// prgStatus
//
prgStatus.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
prgStatus.Location = new Point(12, 27);
prgStatus.Name = "prgStatus";
prgStatus.Size = new Size(331, 23);
prgStatus.Step = 1;
prgStatus.TabIndex = 1;
//
// btnCancel
//
btnCancel.Anchor = AnchorStyles.Bottom;
btnCancel.Location = new Point(140, 62);
btnCancel.Name = "btnCancel";
btnCancel.Size = new Size(75, 23);
btnCancel.TabIndex = 2;
btnCancel.Text = "Abbrechen";
btnCancel.UseVisualStyleBackColor = true;
btnCancel.Click += btnCancel_Click;
//
// frmProgress
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(355, 97);
ControlBox = false;
Controls.Add(btnCancel);
Controls.Add(prgStatus);
Controls.Add(lblFile);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
MaximizeBox = false;
MinimizeBox = false;
Name = "frmProgress";
Text = "Kopiere Dateien...";
Load += frmProgress_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button btnCancel;
internal ProgressBar prgStatus;
internal Label lblFile;
}
}