PlaylistMaker.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PlaylistMaker));
  30. this.PlaylistSelectBox = new System.Windows.Forms.ComboBox();
  31. this.PlaylistSongSelector = new System.Windows.Forms.ListBox();
  32. this.PlaylistAddSongsButton = new System.Windows.Forms.Button();
  33. this.PlaylistSongContainer = new System.Windows.Forms.ListBox();
  34. this.PlaylistNewButton = new System.Windows.Forms.Button();
  35. this.PlaylistNewInputfield = new System.Windows.Forms.TextBox();
  36. this.label1 = new System.Windows.Forms.Label();
  37. this.label2 = new System.Windows.Forms.Label();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.label4 = new System.Windows.Forms.Label();
  40. this.FilterTextBox = new System.Windows.Forms.TextBox();
  41. this.label5 = new System.Windows.Forms.Label();
  42. this.DeletePlaylistButton = new System.Windows.Forms.Button();
  43. this.DeleteSongsButton = new System.Windows.Forms.Button();
  44. this.SuspendLayout();
  45. //
  46. // PlaylistSelectBox
  47. //
  48. this.PlaylistSelectBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  49. | System.Windows.Forms.AnchorStyles.Right)));
  50. this.PlaylistSelectBox.FormattingEnabled = true;
  51. this.PlaylistSelectBox.Location = new System.Drawing.Point(10, 96);
  52. this.PlaylistSelectBox.Name = "PlaylistSelectBox";
  53. this.PlaylistSelectBox.Size = new System.Drawing.Size(306, 21);
  54. this.PlaylistSelectBox.TabIndex = 0;
  55. this.PlaylistSelectBox.SelectedIndexChanged += new System.EventHandler(this.PlaylistSelectBox_SelectedIndexChanged);
  56. //
  57. // PlaylistSongSelector
  58. //
  59. this.PlaylistSongSelector.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  60. | System.Windows.Forms.AnchorStyles.Left)
  61. | System.Windows.Forms.AnchorStyles.Right)));
  62. this.PlaylistSongSelector.FormattingEnabled = true;
  63. this.PlaylistSongSelector.Location = new System.Drawing.Point(11, 149);
  64. this.PlaylistSongSelector.Name = "PlaylistSongSelector";
  65. this.PlaylistSongSelector.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
  66. this.PlaylistSongSelector.Size = new System.Drawing.Size(305, 108);
  67. this.PlaylistSongSelector.TabIndex = 1;
  68. //
  69. // PlaylistAddSongsButton
  70. //
  71. this.PlaylistAddSongsButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  72. | System.Windows.Forms.AnchorStyles.Right)));
  73. this.PlaylistAddSongsButton.Location = new System.Drawing.Point(10, 263);
  74. this.PlaylistAddSongsButton.Name = "PlaylistAddSongsButton";
  75. this.PlaylistAddSongsButton.Size = new System.Drawing.Size(306, 23);
  76. this.PlaylistAddSongsButton.TabIndex = 2;
  77. this.PlaylistAddSongsButton.Text = "Add selected to playlist";
  78. this.PlaylistAddSongsButton.UseVisualStyleBackColor = true;
  79. this.PlaylistAddSongsButton.Click += new System.EventHandler(this.PlaylistAddSongsButton_Click);
  80. //
  81. // PlaylistSongContainer
  82. //
  83. this.PlaylistSongContainer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  84. | System.Windows.Forms.AnchorStyles.Right)));
  85. this.PlaylistSongContainer.FormattingEnabled = true;
  86. this.PlaylistSongContainer.Location = new System.Drawing.Point(10, 319);
  87. this.PlaylistSongContainer.Name = "PlaylistSongContainer";
  88. this.PlaylistSongContainer.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
  89. this.PlaylistSongContainer.Size = new System.Drawing.Size(306, 82);
  90. this.PlaylistSongContainer.TabIndex = 3;
  91. //
  92. // PlaylistNewButton
  93. //
  94. this.PlaylistNewButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  95. this.PlaylistNewButton.Location = new System.Drawing.Point(242, 23);
  96. this.PlaylistNewButton.Name = "PlaylistNewButton";
  97. this.PlaylistNewButton.Size = new System.Drawing.Size(75, 23);
  98. this.PlaylistNewButton.TabIndex = 4;
  99. this.PlaylistNewButton.Text = "New";
  100. this.PlaylistNewButton.UseVisualStyleBackColor = true;
  101. this.PlaylistNewButton.Click += new System.EventHandler(this.PlaylistNewButton_Click);
  102. //
  103. // PlaylistNewInputfield
  104. //
  105. this.PlaylistNewInputfield.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  106. | System.Windows.Forms.AnchorStyles.Right)));
  107. this.PlaylistNewInputfield.Location = new System.Drawing.Point(11, 25);
  108. this.PlaylistNewInputfield.Name = "PlaylistNewInputfield";
  109. this.PlaylistNewInputfield.Size = new System.Drawing.Size(225, 20);
  110. this.PlaylistNewInputfield.TabIndex = 5;
  111. this.PlaylistNewInputfield.KeyUp += new System.Windows.Forms.KeyEventHandler(this.PlaylistNewInputfield_KeyUp);
  112. //
  113. // label1
  114. //
  115. this.label1.AutoSize = true;
  116. this.label1.Location = new System.Drawing.Point(12, 9);
  117. this.label1.Name = "label1";
  118. this.label1.Size = new System.Drawing.Size(95, 13);
  119. this.label1.TabIndex = 6;
  120. this.label1.Text = "Create new playlist";
  121. //
  122. // label2
  123. //
  124. this.label2.AutoSize = true;
  125. this.label2.Location = new System.Drawing.Point(8, 75);
  126. this.label2.Name = "label2";
  127. this.label2.Size = new System.Drawing.Size(97, 13);
  128. this.label2.TabIndex = 7;
  129. this.label2.Text = "Edit existing playlist";
  130. //
  131. // label3
  132. //
  133. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  134. this.label3.AutoSize = true;
  135. this.label3.Location = new System.Drawing.Point(11, 297);
  136. this.label3.Name = "label3";
  137. this.label3.Size = new System.Drawing.Size(82, 13);
  138. this.label3.TabIndex = 8;
  139. this.label3.Text = "Songs in playlist";
  140. //
  141. // label4
  142. //
  143. this.label4.AutoSize = true;
  144. this.label4.Location = new System.Drawing.Point(11, 130);
  145. this.label4.Name = "label4";
  146. this.label4.Size = new System.Drawing.Size(49, 13);
  147. this.label4.TabIndex = 9;
  148. this.label4.Text = "All songs";
  149. //
  150. // FilterTextBox
  151. //
  152. this.FilterTextBox.Location = new System.Drawing.Point(172, 127);
  153. this.FilterTextBox.Name = "FilterTextBox";
  154. this.FilterTextBox.Size = new System.Drawing.Size(144, 20);
  155. this.FilterTextBox.TabIndex = 10;
  156. this.FilterTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.FilterTextBox_KeyUp);
  157. //
  158. // label5
  159. //
  160. this.label5.AutoSize = true;
  161. this.label5.Location = new System.Drawing.Point(137, 130);
  162. this.label5.Name = "label5";
  163. this.label5.Size = new System.Drawing.Size(29, 13);
  164. this.label5.TabIndex = 11;
  165. this.label5.Text = "Filter";
  166. //
  167. // DeletePlaylistButton
  168. //
  169. this.DeletePlaylistButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  170. this.DeletePlaylistButton.Location = new System.Drawing.Point(225, 70);
  171. this.DeletePlaylistButton.Name = "DeletePlaylistButton";
  172. this.DeletePlaylistButton.Size = new System.Drawing.Size(92, 23);
  173. this.DeletePlaylistButton.TabIndex = 12;
  174. this.DeletePlaylistButton.Text = "Delete Playlist";
  175. this.DeletePlaylistButton.UseVisualStyleBackColor = true;
  176. this.DeletePlaylistButton.Click += new System.EventHandler(this.DeletePlaylistButton_Click);
  177. //
  178. // DeleteSongsButton
  179. //
  180. this.DeleteSongsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  181. this.DeleteSongsButton.Location = new System.Drawing.Point(172, 292);
  182. this.DeleteSongsButton.Name = "DeleteSongsButton";
  183. this.DeleteSongsButton.Size = new System.Drawing.Size(143, 23);
  184. this.DeleteSongsButton.TabIndex = 13;
  185. this.DeleteSongsButton.Text = "Delete Selected Songs";
  186. this.DeleteSongsButton.UseVisualStyleBackColor = true;
  187. this.DeleteSongsButton.Click += new System.EventHandler(this.DeleteSongsButton_Click);
  188. //
  189. // PlaylistMaker
  190. //
  191. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  192. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  193. this.ClientSize = new System.Drawing.Size(334, 411);
  194. this.Controls.Add(this.DeleteSongsButton);
  195. this.Controls.Add(this.DeletePlaylistButton);
  196. this.Controls.Add(this.label5);
  197. this.Controls.Add(this.FilterTextBox);
  198. this.Controls.Add(this.label4);
  199. this.Controls.Add(this.label3);
  200. this.Controls.Add(this.label2);
  201. this.Controls.Add(this.label1);
  202. this.Controls.Add(this.PlaylistNewInputfield);
  203. this.Controls.Add(this.PlaylistNewButton);
  204. this.Controls.Add(this.PlaylistSongContainer);
  205. this.Controls.Add(this.PlaylistAddSongsButton);
  206. this.Controls.Add(this.PlaylistSongSelector);
  207. this.Controls.Add(this.PlaylistSelectBox);
  208. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  209. this.MinimumSize = new System.Drawing.Size(300, 425);
  210. this.Name = "PlaylistMaker";
  211. this.Text = "Create / Edit playlists";
  212. this.Shown += new System.EventHandler(this.PlaylistMaker_Load);
  213. this.ResumeLayout(false);
  214. this.PerformLayout();
  215. }
  216. #endregion
  217. private System.Windows.Forms.ComboBox PlaylistSelectBox;
  218. private System.Windows.Forms.ListBox PlaylistSongSelector;
  219. private System.Windows.Forms.Button PlaylistAddSongsButton;
  220. private System.Windows.Forms.ListBox PlaylistSongContainer;
  221. private Button PlaylistNewButton;
  222. private TextBox PlaylistNewInputfield;
  223. private Label label1;
  224. private Label label2;
  225. private Label label3;
  226. private Label label4;
  227. private TextBox FilterTextBox;
  228. private Label label5;
  229. private Button DeletePlaylistButton;
  230. private Button DeleteSongsButton;
  231. }
  232. }