MainForm.Designer.cs 41 KB

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