PlaylistMaker.Designer.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. using System.Windows.Forms;
  2. namespace MusicPlayer
  3. {
  4. partial class PlaylistMaker
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.PlaylistSelectBox = new System.Windows.Forms.ComboBox();
  30. this.PlaylistSongSelector = new System.Windows.Forms.ListBox();
  31. this.PlaylistAddSongsButton = new System.Windows.Forms.Button();
  32. this.PlaylistSongContainer = new System.Windows.Forms.ListBox();
  33. this.PlaylistNewButton = new System.Windows.Forms.Button();
  34. this.PlaylistNewInputfield = new System.Windows.Forms.TextBox();
  35. this.label1 = new System.Windows.Forms.Label();
  36. this.label2 = new System.Windows.Forms.Label();
  37. this.label3 = new System.Windows.Forms.Label();
  38. this.label4 = new System.Windows.Forms.Label();
  39. this.SuspendLayout();
  40. //
  41. // PlaylistSelectBox
  42. //
  43. this.PlaylistSelectBox.FormattingEnabled = true;
  44. this.PlaylistSelectBox.Location = new System.Drawing.Point(10, 96);
  45. this.PlaylistSelectBox.Name = "PlaylistSelectBox";
  46. this.PlaylistSelectBox.Size = new System.Drawing.Size(354, 21);
  47. this.PlaylistSelectBox.TabIndex = 0;
  48. this.PlaylistSelectBox.SelectedIndexChanged += new System.EventHandler(this.PlaylistSelectBox_SelectedIndexChanged);
  49. //
  50. // PlaylistSongSelector
  51. //
  52. this.PlaylistSongSelector.FormattingEnabled = true;
  53. this.PlaylistSongSelector.Location = new System.Drawing.Point(11, 149);
  54. this.PlaylistSongSelector.Name = "PlaylistSongSelector";
  55. this.PlaylistSongSelector.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
  56. this.PlaylistSongSelector.Size = new System.Drawing.Size(353, 121);
  57. this.PlaylistSongSelector.TabIndex = 1;
  58. //
  59. // PlaylistAddSongsButton
  60. //
  61. this.PlaylistAddSongsButton.Location = new System.Drawing.Point(10, 276);
  62. this.PlaylistAddSongsButton.Name = "PlaylistAddSongsButton";
  63. this.PlaylistAddSongsButton.Size = new System.Drawing.Size(354, 23);
  64. this.PlaylistAddSongsButton.TabIndex = 2;
  65. this.PlaylistAddSongsButton.Text = "Add selected to playlist";
  66. this.PlaylistAddSongsButton.UseVisualStyleBackColor = true;
  67. this.PlaylistAddSongsButton.Click += new System.EventHandler(this.PlaylistAddSongsButton_Click);
  68. //
  69. // PlaylistSongContainer
  70. //
  71. this.PlaylistSongContainer.FormattingEnabled = true;
  72. this.PlaylistSongContainer.Location = new System.Drawing.Point(10, 327);
  73. this.PlaylistSongContainer.Name = "PlaylistSongContainer";
  74. this.PlaylistSongContainer.Size = new System.Drawing.Size(354, 82);
  75. this.PlaylistSongContainer.TabIndex = 3;
  76. //
  77. // PlaylistNewButton
  78. //
  79. this.PlaylistNewButton.Location = new System.Drawing.Point(290, 23);
  80. this.PlaylistNewButton.Name = "PlaylistNewButton";
  81. this.PlaylistNewButton.Size = new System.Drawing.Size(75, 23);
  82. this.PlaylistNewButton.TabIndex = 4;
  83. this.PlaylistNewButton.Text = "New";
  84. this.PlaylistNewButton.UseVisualStyleBackColor = true;
  85. this.PlaylistNewButton.Click += new System.EventHandler(this.PlaylistNewButton_Click);
  86. //
  87. // PlaylistNewInputfield
  88. //
  89. this.PlaylistNewInputfield.Location = new System.Drawing.Point(11, 25);
  90. this.PlaylistNewInputfield.Name = "PlaylistNewInputfield";
  91. this.PlaylistNewInputfield.Size = new System.Drawing.Size(273, 20);
  92. this.PlaylistNewInputfield.TabIndex = 5;
  93. //
  94. // label1
  95. //
  96. this.label1.AutoSize = true;
  97. this.label1.Location = new System.Drawing.Point(12, 9);
  98. this.label1.Name = "label1";
  99. this.label1.Size = new System.Drawing.Size(95, 13);
  100. this.label1.TabIndex = 6;
  101. this.label1.Text = "Create new playlist";
  102. //
  103. // label2
  104. //
  105. this.label2.AutoSize = true;
  106. this.label2.Location = new System.Drawing.Point(10, 80);
  107. this.label2.Name = "label2";
  108. this.label2.Size = new System.Drawing.Size(97, 13);
  109. this.label2.TabIndex = 7;
  110. this.label2.Text = "Edit existing playlist";
  111. //
  112. // label3
  113. //
  114. this.label3.AutoSize = true;
  115. this.label3.Location = new System.Drawing.Point(7, 311);
  116. this.label3.Name = "label3";
  117. this.label3.Size = new System.Drawing.Size(82, 13);
  118. this.label3.TabIndex = 8;
  119. this.label3.Text = "Songs in playlist";
  120. //
  121. // label4
  122. //
  123. this.label4.AutoSize = true;
  124. this.label4.Location = new System.Drawing.Point(11, 130);
  125. this.label4.Name = "label4";
  126. this.label4.Size = new System.Drawing.Size(49, 13);
  127. this.label4.TabIndex = 9;
  128. this.label4.Text = "All songs";
  129. //
  130. // PlaylistMaker
  131. //
  132. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  133. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  134. this.ClientSize = new System.Drawing.Size(382, 419);
  135. this.Controls.Add(this.label4);
  136. this.Controls.Add(this.label3);
  137. this.Controls.Add(this.label2);
  138. this.Controls.Add(this.label1);
  139. this.Controls.Add(this.PlaylistNewInputfield);
  140. this.Controls.Add(this.PlaylistNewButton);
  141. this.Controls.Add(this.PlaylistSongContainer);
  142. this.Controls.Add(this.PlaylistAddSongsButton);
  143. this.Controls.Add(this.PlaylistSongSelector);
  144. this.Controls.Add(this.PlaylistSelectBox);
  145. this.Name = "PlaylistMaker";
  146. this.Text = "Create / Edit playlists";
  147. this.Shown += new System.EventHandler(this.PlaylistMaker_Load);
  148. this.ResumeLayout(false);
  149. this.PerformLayout();
  150. }
  151. #endregion
  152. private System.Windows.Forms.ComboBox PlaylistSelectBox;
  153. private System.Windows.Forms.ListBox PlaylistSongSelector;
  154. private System.Windows.Forms.Button PlaylistAddSongsButton;
  155. private System.Windows.Forms.ListBox PlaylistSongContainer;
  156. private Button PlaylistNewButton;
  157. private TextBox PlaylistNewInputfield;
  158. private Label label1;
  159. private Label label2;
  160. private Label label3;
  161. private Label label4;
  162. }
  163. }