MainForm.Designer.cs 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  1. using System;
  2. namespace MusicPlayer
  3. {
  4. partial class MainForm
  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. bool clicked = false;
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.components = new System.ComponentModel.Container();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  33. this.SongsTableView = new System.Windows.Forms.DataGridView();
  34. this.GenreListBox = new System.Windows.Forms.ListBox();
  35. this.AlbumListView = new System.Windows.Forms.ListView();
  36. this.ArtistListBox = new System.Windows.Forms.ListBox();
  37. this.MainPanel = new System.Windows.Forms.Panel();
  38. this.SplitContainer = new System.Windows.Forms.SplitContainer();
  39. this.PlaylistBox = new System.Windows.Forms.ListBox();
  40. this.PlaylistListLabel = new System.Windows.Forms.Label();
  41. this.AlbumListLabel = new System.Windows.Forms.Label();
  42. this.ArtistListLabel = new System.Windows.Forms.Label();
  43. this.GenreListLabel = new System.Windows.Forms.Label();
  44. this.MenuStrip = new System.Windows.Forms.MenuStrip();
  45. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  46. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  47. this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  48. this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  49. this.overviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  50. this.playlistsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  51. this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
  52. this.ViewCurrentPlaylistButton = new System.Windows.Forms.ToolStripMenuItem();
  53. this.playbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  54. this.PlayNextSongButton = new System.Windows.Forms.ToolStripMenuItem();
  55. this.LoopSongButton = new System.Windows.Forms.ToolStripMenuItem();
  56. this.ShuffleSongButton = new System.Windows.Forms.ToolStripMenuItem();
  57. this.playlistToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  58. this.makeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  59. this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  60. this.SearchGenresToolStripLabel = new System.Windows.Forms.ToolStripMenuItem();
  61. this.SearchGenresTextBox = new System.Windows.Forms.ToolStripTextBox();
  62. this.ClearGenreSearchButton = new System.Windows.Forms.ToolStripMenuItem();
  63. this.SearchArtistToolStripLabel = new System.Windows.Forms.ToolStripMenuItem();
  64. this.SearchArtistsTextBox = new System.Windows.Forms.ToolStripTextBox();
  65. this.ClearArtistSearchButton = new System.Windows.Forms.ToolStripMenuItem();
  66. this.ControlsPanel = new System.Windows.Forms.Panel();
  67. this.NextButton = new System.Windows.Forms.Button();
  68. this.PreviousButton = new System.Windows.Forms.Button();
  69. this.CurrentSongLabel = new System.Windows.Forms.Label();
  70. this.LabelTotalTime = new System.Windows.Forms.Label();
  71. this.LabelCurrentTime = new System.Windows.Forms.Label();
  72. this.PositionTrackBar = new System.Windows.Forms.TrackBar();
  73. this.BufferLabel = new System.Windows.Forms.Label();
  74. this.BufferBar = new System.Windows.Forms.ProgressBar();
  75. this.StopButton = new System.Windows.Forms.Button();
  76. this.PauseButton = new System.Windows.Forms.Button();
  77. this.PlayButton = new System.Windows.Forms.Button();
  78. this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
  79. this.NotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
  80. this.NotifyMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  81. this.NotifyMenuStripPlayingLabel = new System.Windows.Forms.ToolStripMenuItem();
  82. this.NotifyMenuStripPlayingSongLabel = new System.Windows.Forms.ToolStripMenuItem();
  83. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  84. this.NotifyMenuStripPlayButton = new System.Windows.Forms.ToolStripMenuItem();
  85. this.NotifyMenuStripPauseButton = new System.Windows.Forms.ToolStripMenuItem();
  86. this.NotifyMenuStripStopButton = new System.Windows.Forms.ToolStripMenuItem();
  87. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  88. this.NotifyMenuStripNextButton = new System.Windows.Forms.ToolStripMenuItem();
  89. this.NotifyMenuStripPreviousButton = new System.Windows.Forms.ToolStripMenuItem();
  90. ((System.ComponentModel.ISupportInitialize)(this.SongsTableView)).BeginInit();
  91. this.MainPanel.SuspendLayout();
  92. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).BeginInit();
  93. this.SplitContainer.Panel1.SuspendLayout();
  94. this.SplitContainer.Panel2.SuspendLayout();
  95. this.SplitContainer.SuspendLayout();
  96. this.MenuStrip.SuspendLayout();
  97. this.ControlsPanel.SuspendLayout();
  98. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).BeginInit();
  99. this.NotifyMenuStrip.SuspendLayout();
  100. this.SuspendLayout();
  101. //
  102. // SongsTableView
  103. //
  104. this.SongsTableView.AllowUserToAddRows = false;
  105. this.SongsTableView.AllowUserToDeleteRows = false;
  106. this.SongsTableView.AllowUserToResizeRows = false;
  107. this.SongsTableView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  108. this.SongsTableView.BackgroundColor = System.Drawing.SystemColors.Control;
  109. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  110. dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.ControlLight;
  111. dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  112. dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
  113. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  114. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  115. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  116. this.SongsTableView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
  117. this.SongsTableView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  118. this.SongsTableView.Dock = System.Windows.Forms.DockStyle.Fill;
  119. this.SongsTableView.Location = new System.Drawing.Point(0, 0);
  120. this.SongsTableView.MultiSelect = false;
  121. this.SongsTableView.Name = "SongsTableView";
  122. this.SongsTableView.ReadOnly = true;
  123. this.SongsTableView.RowHeadersVisible = false;
  124. this.SongsTableView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  125. this.SongsTableView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  126. this.SongsTableView.Size = new System.Drawing.Size(760, 174);
  127. this.SongsTableView.TabIndex = 0;
  128. this.SongsTableView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.SongsTableView_CellDoubleClick);
  129. this.SongsTableView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseDown);
  130. this.SongsTableView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseMove);
  131. this.SongsTableView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SongsTableView_MouseUp);
  132. //
  133. // GenreListBox
  134. //
  135. this.GenreListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  136. | System.Windows.Forms.AnchorStyles.Left)));
  137. this.GenreListBox.BackColor = System.Drawing.SystemColors.Control;
  138. this.GenreListBox.FormattingEnabled = true;
  139. this.GenreListBox.Location = new System.Drawing.Point(0, 0);
  140. this.GenreListBox.Name = "GenreListBox";
  141. this.GenreListBox.Size = new System.Drawing.Size(150, 121);
  142. this.GenreListBox.Sorted = true;
  143. this.GenreListBox.TabIndex = 1;
  144. this.GenreListBox.SelectedIndexChanged += new System.EventHandler(this.GenreListBox_SelectedIndexChanged);
  145. //
  146. // AlbumListView
  147. //
  148. this.AlbumListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  149. | System.Windows.Forms.AnchorStyles.Left)
  150. | System.Windows.Forms.AnchorStyles.Right)));
  151. this.AlbumListView.BackColor = System.Drawing.SystemColors.Control;
  152. this.AlbumListView.Location = new System.Drawing.Point(312, 0);
  153. this.AlbumListView.MultiSelect = false;
  154. this.AlbumListView.Name = "AlbumListView";
  155. this.AlbumListView.Size = new System.Drawing.Size(448, 121);
  156. this.AlbumListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
  157. this.AlbumListView.TabIndex = 2;
  158. this.AlbumListView.TileSize = new System.Drawing.Size(140, 30);
  159. this.AlbumListView.UseCompatibleStateImageBehavior = false;
  160. this.AlbumListView.View = System.Windows.Forms.View.Tile;
  161. this.AlbumListView.SelectedIndexChanged += new System.EventHandler(this.AlbumListView_SelectedIndexChanged);
  162. //
  163. // ArtistListBox
  164. //
  165. this.ArtistListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  166. | System.Windows.Forms.AnchorStyles.Left)));
  167. this.ArtistListBox.BackColor = System.Drawing.SystemColors.Control;
  168. this.ArtistListBox.FormattingEnabled = true;
  169. this.ArtistListBox.Location = new System.Drawing.Point(156, 0);
  170. this.ArtistListBox.Name = "ArtistListBox";
  171. this.ArtistListBox.Size = new System.Drawing.Size(150, 121);
  172. this.ArtistListBox.Sorted = true;
  173. this.ArtistListBox.TabIndex = 3;
  174. this.ArtistListBox.SelectedIndexChanged += new System.EventHandler(this.ArtistListBox_SelectedIndexChanged);
  175. //
  176. // MainPanel
  177. //
  178. this.MainPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  179. | System.Windows.Forms.AnchorStyles.Left)
  180. | System.Windows.Forms.AnchorStyles.Right)));
  181. this.MainPanel.BackColor = System.Drawing.SystemColors.Window;
  182. this.MainPanel.Controls.Add(this.SplitContainer);
  183. this.MainPanel.Controls.Add(this.AlbumListLabel);
  184. this.MainPanel.Controls.Add(this.ArtistListLabel);
  185. this.MainPanel.Controls.Add(this.GenreListLabel);
  186. this.MainPanel.Controls.Add(this.PlaylistListLabel);
  187. this.MainPanel.Location = new System.Drawing.Point(0, 24);
  188. this.MainPanel.Name = "MainPanel";
  189. this.MainPanel.Size = new System.Drawing.Size(784, 351);
  190. this.MainPanel.TabIndex = 5;
  191. //
  192. // SplitContainer
  193. //
  194. this.SplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  195. | System.Windows.Forms.AnchorStyles.Left)
  196. | System.Windows.Forms.AnchorStyles.Right)));
  197. this.SplitContainer.Location = new System.Drawing.Point(12, 25);
  198. this.SplitContainer.Name = "SplitContainer";
  199. this.SplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
  200. //
  201. // SplitContainer.Panel1
  202. //
  203. this.SplitContainer.Panel1.Controls.Add(this.AlbumListView);
  204. this.SplitContainer.Panel1.Controls.Add(this.ArtistListBox);
  205. this.SplitContainer.Panel1.Controls.Add(this.GenreListBox);
  206. this.SplitContainer.Panel1.Controls.Add(this.PlaylistBox);
  207. //
  208. // SplitContainer.Panel2
  209. //
  210. this.SplitContainer.Panel2.Controls.Add(this.SongsTableView);
  211. this.SplitContainer.Size = new System.Drawing.Size(760, 313);
  212. this.SplitContainer.SplitterDistance = 131;
  213. this.SplitContainer.SplitterWidth = 8;
  214. this.SplitContainer.TabIndex = 9;
  215. //
  216. // PlaylistBox
  217. //
  218. this.PlaylistBox.BackColor = System.Drawing.SystemColors.Control;
  219. this.PlaylistBox.Dock = System.Windows.Forms.DockStyle.Fill;
  220. this.PlaylistBox.FormattingEnabled = true;
  221. this.PlaylistBox.Location = new System.Drawing.Point(0, 0);
  222. this.PlaylistBox.Name = "PlaylistBox";
  223. this.PlaylistBox.Size = new System.Drawing.Size(760, 131);
  224. this.PlaylistBox.TabIndex = 4;
  225. this.PlaylistBox.Visible = false;
  226. this.PlaylistBox.SelectedIndexChanged += new System.EventHandler(this.PlaylistBox_SelectedIndexChanged);
  227. //
  228. // PlaylistListLabel
  229. //
  230. this.PlaylistListLabel.AutoSize = true;
  231. this.PlaylistListLabel.Location = new System.Drawing.Point(12, 9);
  232. this.PlaylistListLabel.Name = "PlaylistListLabel";
  233. this.PlaylistListLabel.Size = new System.Drawing.Size(39, 13);
  234. this.PlaylistListLabel.TabIndex = 7;
  235. this.PlaylistListLabel.Text = "Playlist";
  236. this.PlaylistListLabel.Visible = false;
  237. //
  238. // AlbumListLabel
  239. //
  240. this.AlbumListLabel.AutoSize = true;
  241. this.AlbumListLabel.Location = new System.Drawing.Point(321, 8);
  242. this.AlbumListLabel.Name = "AlbumListLabel";
  243. this.AlbumListLabel.Size = new System.Drawing.Size(36, 13);
  244. this.AlbumListLabel.TabIndex = 6;
  245. this.AlbumListLabel.Text = "Album";
  246. //
  247. // ArtistListLabel
  248. //
  249. this.ArtistListLabel.AutoSize = true;
  250. this.ArtistListLabel.Location = new System.Drawing.Point(165, 8);
  251. this.ArtistListLabel.Name = "ArtistListLabel";
  252. this.ArtistListLabel.Size = new System.Drawing.Size(30, 13);
  253. this.ArtistListLabel.TabIndex = 5;
  254. this.ArtistListLabel.Text = "Artist";
  255. //
  256. // GenreListLabel
  257. //
  258. this.GenreListLabel.AutoSize = true;
  259. this.GenreListLabel.Location = new System.Drawing.Point(9, 8);
  260. this.GenreListLabel.Name = "GenreListLabel";
  261. this.GenreListLabel.Size = new System.Drawing.Size(36, 13);
  262. this.GenreListLabel.TabIndex = 4;
  263. this.GenreListLabel.Text = "Genre";
  264. //
  265. // MenuStrip
  266. //
  267. this.MenuStrip.BackColor = System.Drawing.SystemColors.WindowFrame;
  268. this.MenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  269. this.fileToolStripMenuItem,
  270. this.viewToolStripMenuItem,
  271. this.playbackToolStripMenuItem,
  272. this.playlistToolStripMenuItem,
  273. this.searchToolStripMenuItem});
  274. this.MenuStrip.Location = new System.Drawing.Point(0, 0);
  275. this.MenuStrip.Name = "MenuStrip";
  276. this.MenuStrip.Size = new System.Drawing.Size(784, 24);
  277. this.MenuStrip.TabIndex = 6;
  278. this.MenuStrip.Text = "Menu";
  279. //
  280. // fileToolStripMenuItem
  281. //
  282. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  283. this.toolStripSeparator1,
  284. this.exitToolStripMenuItem});
  285. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  286. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  287. this.fileToolStripMenuItem.Text = "File";
  288. //
  289. // toolStripSeparator1
  290. //
  291. this.toolStripSeparator1.Name = "toolStripSeparator1";
  292. this.toolStripSeparator1.Size = new System.Drawing.Size(89, 6);
  293. //
  294. // exitToolStripMenuItem
  295. //
  296. this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
  297. this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
  298. this.exitToolStripMenuItem.Text = "Exit";
  299. this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
  300. //
  301. // viewToolStripMenuItem
  302. //
  303. this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  304. this.overviewToolStripMenuItem,
  305. this.playlistsToolStripMenuItem,
  306. this.toolStripSeparator4,
  307. this.ViewCurrentPlaylistButton});
  308. this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
  309. this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
  310. this.viewToolStripMenuItem.Text = "View";
  311. //
  312. // overviewToolStripMenuItem
  313. //
  314. this.overviewToolStripMenuItem.Name = "overviewToolStripMenuItem";
  315. this.overviewToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
  316. this.overviewToolStripMenuItem.Text = "Overview";
  317. this.overviewToolStripMenuItem.Click += new System.EventHandler(this.overviewToolStripMenuItem_Click);
  318. //
  319. // playlistsToolStripMenuItem
  320. //
  321. this.playlistsToolStripMenuItem.Name = "playlistsToolStripMenuItem";
  322. this.playlistsToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
  323. this.playlistsToolStripMenuItem.Text = "Playlists";
  324. this.playlistsToolStripMenuItem.Click += new System.EventHandler(this.playlistsToolStripMenuItem_Click);
  325. //
  326. // toolStripSeparator4
  327. //
  328. this.toolStripSeparator4.Name = "toolStripSeparator4";
  329. this.toolStripSeparator4.Size = new System.Drawing.Size(151, 6);
  330. //
  331. // ViewCurrentPlaylistButton
  332. //
  333. this.ViewCurrentPlaylistButton.Name = "ViewCurrentPlaylistButton";
  334. this.ViewCurrentPlaylistButton.Size = new System.Drawing.Size(154, 22);
  335. this.ViewCurrentPlaylistButton.Text = "Current Playlist";
  336. this.ViewCurrentPlaylistButton.Click += new System.EventHandler(this.ViewCurrentPlaylistButton_Click);
  337. //
  338. // playbackToolStripMenuItem
  339. //
  340. this.playbackToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  341. this.PlayNextSongButton,
  342. this.LoopSongButton,
  343. this.ShuffleSongButton});
  344. this.playbackToolStripMenuItem.Name = "playbackToolStripMenuItem";
  345. this.playbackToolStripMenuItem.Size = new System.Drawing.Size(66, 20);
  346. this.playbackToolStripMenuItem.Text = "Playback";
  347. //
  348. // PlayNextSongButton
  349. //
  350. this.PlayNextSongButton.Checked = true;
  351. this.PlayNextSongButton.CheckOnClick = true;
  352. this.PlayNextSongButton.CheckState = System.Windows.Forms.CheckState.Checked;
  353. this.PlayNextSongButton.Name = "PlayNextSongButton";
  354. this.PlayNextSongButton.Size = new System.Drawing.Size(123, 22);
  355. this.PlayNextSongButton.Text = "Play Next";
  356. //
  357. // LoopSongButton
  358. //
  359. this.LoopSongButton.Checked = true;
  360. this.LoopSongButton.CheckOnClick = true;
  361. this.LoopSongButton.CheckState = System.Windows.Forms.CheckState.Checked;
  362. this.LoopSongButton.Name = "LoopSongButton";
  363. this.LoopSongButton.Size = new System.Drawing.Size(123, 22);
  364. this.LoopSongButton.Text = "Loop";
  365. //
  366. // ShuffleSongButton
  367. //
  368. this.ShuffleSongButton.CheckOnClick = true;
  369. this.ShuffleSongButton.Enabled = false;
  370. this.ShuffleSongButton.Name = "ShuffleSongButton";
  371. this.ShuffleSongButton.Size = new System.Drawing.Size(123, 22);
  372. this.ShuffleSongButton.Text = "Shuffle";
  373. //
  374. // playlistToolStripMenuItem
  375. //
  376. this.playlistToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  377. this.makeToolStripMenuItem});
  378. this.playlistToolStripMenuItem.Name = "playlistToolStripMenuItem";
  379. this.playlistToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
  380. this.playlistToolStripMenuItem.Text = "Playlist";
  381. //
  382. // makeToolStripMenuItem
  383. //
  384. this.makeToolStripMenuItem.Name = "makeToolStripMenuItem";
  385. this.makeToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
  386. this.makeToolStripMenuItem.Text = "Create / Edit";
  387. this.makeToolStripMenuItem.Click += new System.EventHandler(this.makeToolStripMenuItem_Click);
  388. //
  389. // searchToolStripMenuItem
  390. //
  391. this.searchToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  392. this.SearchGenresToolStripLabel,
  393. this.SearchArtistToolStripLabel});
  394. this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
  395. this.searchToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
  396. this.searchToolStripMenuItem.Text = "Search";
  397. //
  398. // SearchGenresToolStripLabel
  399. //
  400. this.SearchGenresToolStripLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  401. this.SearchGenresTextBox,
  402. this.ClearGenreSearchButton});
  403. this.SearchGenresToolStripLabel.Name = "SearchGenresToolStripLabel";
  404. this.SearchGenresToolStripLabel.Size = new System.Drawing.Size(110, 22);
  405. this.SearchGenresToolStripLabel.Text = "Genres";
  406. //
  407. // SearchGenresTextBox
  408. //
  409. this.SearchGenresTextBox.Name = "SearchGenresTextBox";
  410. this.SearchGenresTextBox.Size = new System.Drawing.Size(100, 23);
  411. this.SearchGenresTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SearchGenresTextBox_KeyUp);
  412. //
  413. // ClearGenreSearchButton
  414. //
  415. this.ClearGenreSearchButton.Enabled = false;
  416. this.ClearGenreSearchButton.Name = "ClearGenreSearchButton";
  417. this.ClearGenreSearchButton.Size = new System.Drawing.Size(160, 22);
  418. this.ClearGenreSearchButton.Text = "Clear Search";
  419. this.ClearGenreSearchButton.Click += new System.EventHandler(this.ClearGenreSearchButton_Click);
  420. //
  421. // SearchArtistToolStripLabel
  422. //
  423. this.SearchArtistToolStripLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  424. this.SearchArtistsTextBox,
  425. this.ClearArtistSearchButton});
  426. this.SearchArtistToolStripLabel.Name = "SearchArtistToolStripLabel";
  427. this.SearchArtistToolStripLabel.Size = new System.Drawing.Size(110, 22);
  428. this.SearchArtistToolStripLabel.Text = "Artists";
  429. //
  430. // SearchArtistsTextBox
  431. //
  432. this.SearchArtistsTextBox.Name = "SearchArtistsTextBox";
  433. this.SearchArtistsTextBox.Size = new System.Drawing.Size(100, 23);
  434. this.SearchArtistsTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SearchArtistsTextBox_KeyUp);
  435. //
  436. // ClearArtistSearchButton
  437. //
  438. this.ClearArtistSearchButton.Enabled = false;
  439. this.ClearArtistSearchButton.Name = "ClearArtistSearchButton";
  440. this.ClearArtistSearchButton.Size = new System.Drawing.Size(160, 22);
  441. this.ClearArtistSearchButton.Text = "Clear Search";
  442. this.ClearArtistSearchButton.Click += new System.EventHandler(this.ClearArtistSearchButton_Click);
  443. //
  444. // ControlsPanel
  445. //
  446. this.ControlsPanel.BackColor = System.Drawing.SystemColors.WindowFrame;
  447. this.ControlsPanel.Controls.Add(this.NextButton);
  448. this.ControlsPanel.Controls.Add(this.PreviousButton);
  449. this.ControlsPanel.Controls.Add(this.CurrentSongLabel);
  450. this.ControlsPanel.Controls.Add(this.LabelTotalTime);
  451. this.ControlsPanel.Controls.Add(this.LabelCurrentTime);
  452. this.ControlsPanel.Controls.Add(this.PositionTrackBar);
  453. this.ControlsPanel.Controls.Add(this.BufferLabel);
  454. this.ControlsPanel.Controls.Add(this.BufferBar);
  455. this.ControlsPanel.Controls.Add(this.StopButton);
  456. this.ControlsPanel.Controls.Add(this.PauseButton);
  457. this.ControlsPanel.Controls.Add(this.PlayButton);
  458. this.ControlsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
  459. this.ControlsPanel.Location = new System.Drawing.Point(0, 378);
  460. this.ControlsPanel.Name = "ControlsPanel";
  461. this.ControlsPanel.Size = new System.Drawing.Size(784, 83);
  462. this.ControlsPanel.TabIndex = 4;
  463. //
  464. // NextButton
  465. //
  466. this.NextButton.Location = new System.Drawing.Point(214, 51);
  467. this.NextButton.Name = "NextButton";
  468. this.NextButton.Size = new System.Drawing.Size(31, 23);
  469. this.NextButton.TabIndex = 13;
  470. this.NextButton.Text = ">";
  471. this.NextButton.UseVisualStyleBackColor = true;
  472. this.NextButton.Click += new System.EventHandler(this.NextButton_Click);
  473. //
  474. // PreviousButton
  475. //
  476. this.PreviousButton.Location = new System.Drawing.Point(177, 51);
  477. this.PreviousButton.Name = "PreviousButton";
  478. this.PreviousButton.Size = new System.Drawing.Size(31, 23);
  479. this.PreviousButton.TabIndex = 12;
  480. this.PreviousButton.Text = "<";
  481. this.PreviousButton.UseVisualStyleBackColor = true;
  482. this.PreviousButton.Click += new System.EventHandler(this.PreviousButton_Click);
  483. //
  484. // CurrentSongLabel
  485. //
  486. this.CurrentSongLabel.AutoSize = true;
  487. this.CurrentSongLabel.Location = new System.Drawing.Point(256, 56);
  488. this.CurrentSongLabel.Name = "CurrentSongLabel";
  489. this.CurrentSongLabel.Size = new System.Drawing.Size(111, 13);
  490. this.CurrentSongLabel.TabIndex = 11;
  491. this.CurrentSongLabel.Text = "Not playing any songs";
  492. //
  493. // LabelTotalTime
  494. //
  495. this.LabelTotalTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  496. this.LabelTotalTime.AutoSize = true;
  497. this.LabelTotalTime.Location = new System.Drawing.Point(723, 26);
  498. this.LabelTotalTime.Name = "LabelTotalTime";
  499. this.LabelTotalTime.Size = new System.Drawing.Size(49, 13);
  500. this.LabelTotalTime.TabIndex = 9;
  501. this.LabelTotalTime.Text = "00:00:00";
  502. //
  503. // LabelCurrentTime
  504. //
  505. this.LabelCurrentTime.AutoSize = true;
  506. this.LabelCurrentTime.Location = new System.Drawing.Point(12, 26);
  507. this.LabelCurrentTime.Name = "LabelCurrentTime";
  508. this.LabelCurrentTime.Size = new System.Drawing.Size(49, 13);
  509. this.LabelCurrentTime.TabIndex = 8;
  510. this.LabelCurrentTime.Text = "00:00:00";
  511. //
  512. // PositionTrackBar
  513. //
  514. this.PositionTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  515. | System.Windows.Forms.AnchorStyles.Right)));
  516. this.PositionTrackBar.Enabled = false;
  517. this.PositionTrackBar.Location = new System.Drawing.Point(3, 3);
  518. this.PositionTrackBar.Maximum = 1000;
  519. this.PositionTrackBar.Name = "PositionTrackBar";
  520. this.PositionTrackBar.Size = new System.Drawing.Size(778, 45);
  521. this.PositionTrackBar.TabIndex = 7;
  522. this.PositionTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
  523. this.PositionTrackBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PositionTrackBar_MouseDown);
  524. //
  525. // BufferLabel
  526. //
  527. this.BufferLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  528. this.BufferLabel.AutoSize = true;
  529. this.BufferLabel.Location = new System.Drawing.Point(601, 56);
  530. this.BufferLabel.Name = "BufferLabel";
  531. this.BufferLabel.Size = new System.Drawing.Size(35, 13);
  532. this.BufferLabel.TabIndex = 5;
  533. this.BufferLabel.Text = "Buffer";
  534. //
  535. // BufferBar
  536. //
  537. this.BufferBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  538. this.BufferBar.Location = new System.Drawing.Point(642, 51);
  539. this.BufferBar.Name = "BufferBar";
  540. this.BufferBar.Size = new System.Drawing.Size(130, 23);
  541. this.BufferBar.TabIndex = 3;
  542. //
  543. // StopButton
  544. //
  545. this.StopButton.Enabled = false;
  546. this.StopButton.Location = new System.Drawing.Point(122, 51);
  547. this.StopButton.Name = "StopButton";
  548. this.StopButton.Size = new System.Drawing.Size(49, 23);
  549. this.StopButton.TabIndex = 2;
  550. this.StopButton.Text = "Stop";
  551. this.StopButton.UseVisualStyleBackColor = true;
  552. this.StopButton.Click += new System.EventHandler(this.StopButton_Click);
  553. //
  554. // PauseButton
  555. //
  556. this.PauseButton.Enabled = false;
  557. this.PauseButton.Location = new System.Drawing.Point(67, 51);
  558. this.PauseButton.Name = "PauseButton";
  559. this.PauseButton.Size = new System.Drawing.Size(49, 23);
  560. this.PauseButton.TabIndex = 1;
  561. this.PauseButton.Text = "Pause";
  562. this.PauseButton.UseVisualStyleBackColor = true;
  563. this.PauseButton.Click += new System.EventHandler(this.PauseButton_Click);
  564. //
  565. // PlayButton
  566. //
  567. this.PlayButton.Location = new System.Drawing.Point(12, 51);
  568. this.PlayButton.Name = "PlayButton";
  569. this.PlayButton.Size = new System.Drawing.Size(49, 23);
  570. this.PlayButton.TabIndex = 0;
  571. this.PlayButton.Text = "Play";
  572. this.PlayButton.UseVisualStyleBackColor = true;
  573. this.PlayButton.Click += new System.EventHandler(this.PlayButton_Click);
  574. //
  575. // UpdateTimer
  576. //
  577. this.UpdateTimer.Interval = 200;
  578. this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick);
  579. //
  580. // NotifyIcon
  581. //
  582. this.NotifyIcon.ContextMenuStrip = this.NotifyMenuStrip;
  583. this.NotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
  584. this.NotifyIcon.Text = "NotifyIcon";
  585. this.NotifyIcon.Visible = true;
  586. this.NotifyIcon.MouseUp += new System.Windows.Forms.MouseEventHandler(this.NotifyIcon_Click);
  587. //
  588. // NotifyMenuStrip
  589. //
  590. this.NotifyMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  591. this.NotifyMenuStripPlayingLabel,
  592. this.toolStripSeparator2,
  593. this.NotifyMenuStripPlayButton,
  594. this.NotifyMenuStripPauseButton,
  595. this.NotifyMenuStripStopButton,
  596. this.toolStripSeparator3,
  597. this.NotifyMenuStripNextButton,
  598. this.NotifyMenuStripPreviousButton});
  599. this.NotifyMenuStrip.Name = "NotifyMenuStrip";
  600. this.NotifyMenuStrip.Size = new System.Drawing.Size(120, 148);
  601. //
  602. // NotifyMenuStripPlayingLabel
  603. //
  604. this.NotifyMenuStripPlayingLabel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  605. this.NotifyMenuStripPlayingSongLabel});
  606. this.NotifyMenuStripPlayingLabel.Enabled = false;
  607. this.NotifyMenuStripPlayingLabel.Name = "NotifyMenuStripPlayingLabel";
  608. this.NotifyMenuStripPlayingLabel.Size = new System.Drawing.Size(119, 22);
  609. this.NotifyMenuStripPlayingLabel.Text = "Stopped";
  610. //
  611. // NotifyMenuStripPlayingSongLabel
  612. //
  613. this.NotifyMenuStripPlayingSongLabel.Enabled = false;
  614. this.NotifyMenuStripPlayingSongLabel.Name = "NotifyMenuStripPlayingSongLabel";
  615. this.NotifyMenuStripPlayingSongLabel.Size = new System.Drawing.Size(118, 22);
  616. this.NotifyMenuStripPlayingSongLabel.Text = "Stopped";
  617. this.NotifyMenuStripPlayingSongLabel.Visible = false;
  618. //
  619. // toolStripSeparator2
  620. //
  621. this.toolStripSeparator2.Name = "toolStripSeparator2";
  622. this.toolStripSeparator2.Size = new System.Drawing.Size(116, 6);
  623. //
  624. // NotifyMenuStripPlayButton
  625. //
  626. this.NotifyMenuStripPlayButton.Name = "NotifyMenuStripPlayButton";
  627. this.NotifyMenuStripPlayButton.Size = new System.Drawing.Size(119, 22);
  628. this.NotifyMenuStripPlayButton.Text = "Play";
  629. this.NotifyMenuStripPlayButton.Click += new System.EventHandler(this.NotifyMenuStripPlayButton_Click);
  630. //
  631. // NotifyMenuStripPauseButton
  632. //
  633. this.NotifyMenuStripPauseButton.Enabled = false;
  634. this.NotifyMenuStripPauseButton.Name = "NotifyMenuStripPauseButton";
  635. this.NotifyMenuStripPauseButton.Size = new System.Drawing.Size(119, 22);
  636. this.NotifyMenuStripPauseButton.Text = "Pause";
  637. this.NotifyMenuStripPauseButton.Click += new System.EventHandler(this.NotifyMenuStripPauseButton_Click);
  638. //
  639. // NotifyMenuStripStopButton
  640. //
  641. this.NotifyMenuStripStopButton.Enabled = false;
  642. this.NotifyMenuStripStopButton.Name = "NotifyMenuStripStopButton";
  643. this.NotifyMenuStripStopButton.Size = new System.Drawing.Size(119, 22);
  644. this.NotifyMenuStripStopButton.Text = "Stop";
  645. this.NotifyMenuStripStopButton.Click += new System.EventHandler(this.NotifyMenuStripStopButton_Click);
  646. //
  647. // toolStripSeparator3
  648. //
  649. this.toolStripSeparator3.Name = "toolStripSeparator3";
  650. this.toolStripSeparator3.Size = new System.Drawing.Size(116, 6);
  651. //
  652. // NotifyMenuStripNextButton
  653. //
  654. this.NotifyMenuStripNextButton.Name = "NotifyMenuStripNextButton";
  655. this.NotifyMenuStripNextButton.Size = new System.Drawing.Size(119, 22);
  656. this.NotifyMenuStripNextButton.Text = "Next";
  657. this.NotifyMenuStripNextButton.Click += new System.EventHandler(this.NotifyMenuStripNextButton_Click);
  658. //
  659. // NotifyMenuStripPreviousButton
  660. //
  661. this.NotifyMenuStripPreviousButton.Name = "NotifyMenuStripPreviousButton";
  662. this.NotifyMenuStripPreviousButton.Size = new System.Drawing.Size(119, 22);
  663. this.NotifyMenuStripPreviousButton.Text = "Previous";
  664. this.NotifyMenuStripPreviousButton.Click += new System.EventHandler(this.NotifyMenuStripPreviousButton_Click);
  665. //
  666. // MainForm
  667. //
  668. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  669. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  670. this.ClientSize = new System.Drawing.Size(784, 461);
  671. this.Controls.Add(this.ControlsPanel);
  672. this.Controls.Add(this.MainPanel);
  673. this.Controls.Add(this.MenuStrip);
  674. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  675. this.MainMenuStrip = this.MenuStrip;
  676. this.MinimumSize = new System.Drawing.Size(800, 500);
  677. this.Name = "MainForm";
  678. this.Text = "YJMPD Music Player";
  679. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  680. this.Load += new System.EventHandler(this.MainForm_Load);
  681. ((System.ComponentModel.ISupportInitialize)(this.SongsTableView)).EndInit();
  682. this.MainPanel.ResumeLayout(false);
  683. this.MainPanel.PerformLayout();
  684. this.SplitContainer.Panel1.ResumeLayout(false);
  685. this.SplitContainer.Panel2.ResumeLayout(false);
  686. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).EndInit();
  687. this.SplitContainer.ResumeLayout(false);
  688. this.MenuStrip.ResumeLayout(false);
  689. this.MenuStrip.PerformLayout();
  690. this.ControlsPanel.ResumeLayout(false);
  691. this.ControlsPanel.PerformLayout();
  692. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).EndInit();
  693. this.NotifyMenuStrip.ResumeLayout(false);
  694. this.ResumeLayout(false);
  695. this.PerformLayout();
  696. }
  697. #endregion
  698. public System.Windows.Forms.DataGridView SongsTableView;
  699. public System.Windows.Forms.ListBox GenreListBox;
  700. public System.Windows.Forms.ListView AlbumListView;
  701. public System.Windows.Forms.ListBox ArtistListBox;
  702. private System.Windows.Forms.Panel MainPanel;
  703. private System.Windows.Forms.MenuStrip MenuStrip;
  704. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  705. private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
  706. private System.Windows.Forms.Panel ControlsPanel;
  707. private System.Windows.Forms.Button PlayButton;
  708. private System.Windows.Forms.Button StopButton;
  709. private System.Windows.Forms.Button PauseButton;
  710. private System.Windows.Forms.Label BufferLabel;
  711. private System.Windows.Forms.ProgressBar BufferBar;
  712. private System.Windows.Forms.Timer UpdateTimer;
  713. private System.Windows.Forms.TrackBar PositionTrackBar;
  714. private System.Windows.Forms.Label LabelTotalTime;
  715. private System.Windows.Forms.Label LabelCurrentTime;
  716. private System.Windows.Forms.NotifyIcon NotifyIcon;
  717. private System.Windows.Forms.Label CurrentSongLabel;
  718. private System.Windows.Forms.Label AlbumListLabel;
  719. private System.Windows.Forms.Label ArtistListLabel;
  720. private System.Windows.Forms.Label GenreListLabel;
  721. private System.Windows.Forms.ToolStripMenuItem playlistsToolStripMenuItem;
  722. private System.Windows.Forms.ToolStripMenuItem overviewToolStripMenuItem;
  723. public System.Windows.Forms.ListBox PlaylistBox;
  724. private System.Windows.Forms.Label PlaylistListLabel;
  725. private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
  726. private System.Windows.Forms.ToolStripMenuItem playlistToolStripMenuItem;
  727. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  728. private System.Windows.Forms.ContextMenuStrip NotifyMenuStrip;
  729. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayButton;
  730. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPauseButton;
  731. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripStopButton;
  732. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayingLabel;
  733. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  734. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPlayingSongLabel;
  735. private System.Windows.Forms.SplitContainer SplitContainer;
  736. private System.Windows.Forms.ToolStripMenuItem makeToolStripMenuItem;
  737. private System.Windows.Forms.ToolStripMenuItem searchToolStripMenuItem;
  738. private System.Windows.Forms.ToolStripMenuItem SearchArtistToolStripLabel;
  739. private System.Windows.Forms.ToolStripTextBox SearchArtistsTextBox;
  740. private System.Windows.Forms.ToolStripMenuItem SearchGenresToolStripLabel;
  741. private System.Windows.Forms.ToolStripTextBox SearchGenresTextBox;
  742. private System.Windows.Forms.ToolStripMenuItem ClearArtistSearchButton;
  743. private System.Windows.Forms.ToolStripMenuItem ClearGenreSearchButton;
  744. private System.Windows.Forms.ToolStripMenuItem playbackToolStripMenuItem;
  745. private System.Windows.Forms.ToolStripMenuItem ShuffleSongButton;
  746. private System.Windows.Forms.ToolStripMenuItem LoopSongButton;
  747. private System.Windows.Forms.ToolStripMenuItem PlayNextSongButton;
  748. private System.Windows.Forms.Button NextButton;
  749. private System.Windows.Forms.Button PreviousButton;
  750. private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
  751. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripNextButton;
  752. private System.Windows.Forms.ToolStripMenuItem NotifyMenuStripPreviousButton;
  753. private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
  754. private System.Windows.Forms.ToolStripMenuItem ViewCurrentPlaylistButton;
  755. }
  756. }