155 lines
5.8 KiB
C#
155 lines
5.8 KiB
C#
namespace PlaylistManager
|
|
{
|
|
partial class frmList
|
|
{
|
|
/// <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()
|
|
{
|
|
splitContainer1 = new SplitContainer();
|
|
lstGefunden = new ListBox();
|
|
lblGefundeneDateien = new Label();
|
|
lstNichtGefunden = new ListBox();
|
|
lblNichtGefunden = new Label();
|
|
panel1 = new Panel();
|
|
btnOK = new Button();
|
|
((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
|
|
splitContainer1.Panel1.SuspendLayout();
|
|
splitContainer1.Panel2.SuspendLayout();
|
|
splitContainer1.SuspendLayout();
|
|
panel1.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// splitContainer1
|
|
//
|
|
splitContainer1.Dock = DockStyle.Fill;
|
|
splitContainer1.FixedPanel = FixedPanel.Panel2;
|
|
splitContainer1.Location = new Point(0, 0);
|
|
splitContainer1.Name = "splitContainer1";
|
|
splitContainer1.Orientation = Orientation.Horizontal;
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
splitContainer1.Panel1.Controls.Add(lstGefunden);
|
|
splitContainer1.Panel1.Controls.Add(lblGefundeneDateien);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
splitContainer1.Panel2.Controls.Add(lstNichtGefunden);
|
|
splitContainer1.Panel2.Controls.Add(lblNichtGefunden);
|
|
splitContainer1.Size = new Size(692, 464);
|
|
splitContainer1.SplitterDistance = 316;
|
|
splitContainer1.TabIndex = 0;
|
|
//
|
|
// lstGefunden
|
|
//
|
|
lstGefunden.Dock = DockStyle.Fill;
|
|
lstGefunden.FormattingEnabled = true;
|
|
lstGefunden.ItemHeight = 15;
|
|
lstGefunden.Location = new Point(0, 15);
|
|
lstGefunden.Name = "lstGefunden";
|
|
lstGefunden.Size = new Size(692, 301);
|
|
lstGefunden.TabIndex = 1;
|
|
//
|
|
// lblGefundeneDateien
|
|
//
|
|
lblGefundeneDateien.AutoSize = true;
|
|
lblGefundeneDateien.Dock = DockStyle.Top;
|
|
lblGefundeneDateien.Location = new Point(0, 0);
|
|
lblGefundeneDateien.Name = "lblGefundeneDateien";
|
|
lblGefundeneDateien.Size = new Size(108, 15);
|
|
lblGefundeneDateien.TabIndex = 0;
|
|
lblGefundeneDateien.Text = "Gefundene Dateien";
|
|
//
|
|
// lstNichtGefunden
|
|
//
|
|
lstNichtGefunden.Dock = DockStyle.Fill;
|
|
lstNichtGefunden.FormattingEnabled = true;
|
|
lstNichtGefunden.ItemHeight = 15;
|
|
lstNichtGefunden.Location = new Point(0, 15);
|
|
lstNichtGefunden.Name = "lstNichtGefunden";
|
|
lstNichtGefunden.Size = new Size(692, 129);
|
|
lstNichtGefunden.TabIndex = 2;
|
|
//
|
|
// lblNichtGefunden
|
|
//
|
|
lblNichtGefunden.AutoSize = true;
|
|
lblNichtGefunden.Dock = DockStyle.Top;
|
|
lblNichtGefunden.Location = new Point(0, 0);
|
|
lblNichtGefunden.Name = "lblNichtGefunden";
|
|
lblNichtGefunden.Size = new Size(376, 15);
|
|
lblNichtGefunden.TabIndex = 1;
|
|
lblNichtGefunden.Text = "Nicht gefunden Dateien (Diese Dateien können nicht kopiert werden!):";
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(btnOK);
|
|
panel1.Dock = DockStyle.Bottom;
|
|
panel1.Location = new Point(0, 414);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(692, 50);
|
|
panel1.TabIndex = 1;
|
|
//
|
|
// btnOK
|
|
//
|
|
btnOK.Anchor = AnchorStyles.Bottom;
|
|
btnOK.DialogResult = DialogResult.OK;
|
|
btnOK.Location = new Point(237, 6);
|
|
btnOK.Name = "btnOK";
|
|
btnOK.Size = new Size(219, 32);
|
|
btnOK.TabIndex = 0;
|
|
btnOK.Text = "Vorhandene Dateien jetzt kopieren!";
|
|
btnOK.UseVisualStyleBackColor = true;
|
|
//
|
|
// frmList
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(692, 464);
|
|
Controls.Add(panel1);
|
|
Controls.Add(splitContainer1);
|
|
Name = "frmList";
|
|
Text = "Gefundene Lieder";
|
|
splitContainer1.Panel1.ResumeLayout(false);
|
|
splitContainer1.Panel1.PerformLayout();
|
|
splitContainer1.Panel2.ResumeLayout(false);
|
|
splitContainer1.Panel2.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
|
|
splitContainer1.ResumeLayout(false);
|
|
panel1.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private SplitContainer splitContainer1;
|
|
private Label lblGefundeneDateien;
|
|
private Label lblNichtGefunden;
|
|
private Panel panel1;
|
|
private Button btnOK;
|
|
internal ListBox lstGefunden;
|
|
internal ListBox lstNichtGefunden;
|
|
}
|
|
} |