| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- using System.Windows.Forms;
- namespace MusicPlayer
- {
- partial class PlaylistMaker
- {
- /// <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.PlaylistSelectBox = new System.Windows.Forms.ComboBox();
- this.PlaylistSongSelector = new System.Windows.Forms.ListBox();
- this.PlaylistAddSongsButton = new System.Windows.Forms.Button();
- this.PlaylistSongContainer = new System.Windows.Forms.ListBox();
- this.PlaylistNewButton = new System.Windows.Forms.Button();
- this.PlaylistNewInputfield = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // PlaylistSelectBox
- //
- this.PlaylistSelectBox.FormattingEnabled = true;
- this.PlaylistSelectBox.Location = new System.Drawing.Point(10, 96);
- this.PlaylistSelectBox.Name = "PlaylistSelectBox";
- this.PlaylistSelectBox.Size = new System.Drawing.Size(354, 21);
- this.PlaylistSelectBox.TabIndex = 0;
- this.PlaylistSelectBox.SelectedIndexChanged += new System.EventHandler(this.PlaylistSelectBox_SelectedIndexChanged);
- //
- // PlaylistSongSelector
- //
- this.PlaylistSongSelector.FormattingEnabled = true;
- this.PlaylistSongSelector.Location = new System.Drawing.Point(11, 149);
- this.PlaylistSongSelector.Name = "PlaylistSongSelector";
- this.PlaylistSongSelector.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
- this.PlaylistSongSelector.Size = new System.Drawing.Size(353, 121);
- this.PlaylistSongSelector.TabIndex = 1;
- //
- // PlaylistAddSongsButton
- //
- this.PlaylistAddSongsButton.Location = new System.Drawing.Point(10, 276);
- this.PlaylistAddSongsButton.Name = "PlaylistAddSongsButton";
- this.PlaylistAddSongsButton.Size = new System.Drawing.Size(354, 23);
- this.PlaylistAddSongsButton.TabIndex = 2;
- this.PlaylistAddSongsButton.Text = "Add selected to playlist";
- this.PlaylistAddSongsButton.UseVisualStyleBackColor = true;
- this.PlaylistAddSongsButton.Click += new System.EventHandler(this.PlaylistAddSongsButton_Click);
- //
- // PlaylistSongContainer
- //
- this.PlaylistSongContainer.FormattingEnabled = true;
- this.PlaylistSongContainer.Location = new System.Drawing.Point(10, 327);
- this.PlaylistSongContainer.Name = "PlaylistSongContainer";
- this.PlaylistSongContainer.Size = new System.Drawing.Size(354, 82);
- this.PlaylistSongContainer.TabIndex = 3;
- //
- // PlaylistNewButton
- //
- this.PlaylistNewButton.Location = new System.Drawing.Point(290, 23);
- this.PlaylistNewButton.Name = "PlaylistNewButton";
- this.PlaylistNewButton.Size = new System.Drawing.Size(75, 23);
- this.PlaylistNewButton.TabIndex = 4;
- this.PlaylistNewButton.Text = "New";
- this.PlaylistNewButton.UseVisualStyleBackColor = true;
- this.PlaylistNewButton.Click += new System.EventHandler(this.PlaylistNewButton_Click);
- //
- // PlaylistNewInputfield
- //
- this.PlaylistNewInputfield.Location = new System.Drawing.Point(11, 25);
- this.PlaylistNewInputfield.Name = "PlaylistNewInputfield";
- this.PlaylistNewInputfield.Size = new System.Drawing.Size(273, 20);
- this.PlaylistNewInputfield.TabIndex = 5;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(12, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(95, 13);
- this.label1.TabIndex = 6;
- this.label1.Text = "Create new playlist";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(10, 80);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(97, 13);
- this.label2.TabIndex = 7;
- this.label2.Text = "Edit existing playlist";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(7, 311);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(82, 13);
- this.label3.TabIndex = 8;
- this.label3.Text = "Songs in playlist";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(11, 130);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(49, 13);
- this.label4.TabIndex = 9;
- this.label4.Text = "All songs";
- //
- // PlaylistMaker
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(382, 419);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.PlaylistNewInputfield);
- this.Controls.Add(this.PlaylistNewButton);
- this.Controls.Add(this.PlaylistSongContainer);
- this.Controls.Add(this.PlaylistAddSongsButton);
- this.Controls.Add(this.PlaylistSongSelector);
- this.Controls.Add(this.PlaylistSelectBox);
- this.Name = "PlaylistMaker";
- this.Text = "Create / Edit playlists";
- this.Shown += new System.EventHandler(this.PlaylistMaker_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ComboBox PlaylistSelectBox;
- private System.Windows.Forms.ListBox PlaylistSongSelector;
- private System.Windows.Forms.Button PlaylistAddSongsButton;
- private System.Windows.Forms.ListBox PlaylistSongContainer;
- private Button PlaylistNewButton;
- private TextBox PlaylistNewInputfield;
- private Label label1;
- private Label label2;
- private Label label3;
- private Label label4;
- }
- }
|