89 lines
2.9 KiB
C#
89 lines
2.9 KiB
C#
namespace PlaylistManager
|
|
{
|
|
partial class frmProgress
|
|
{
|
|
/// <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()
|
|
{
|
|
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;
|
|
}
|
|
} |