This commit is contained in:
Royce551 2020-07-04 15:06:00 -05:00
parent df5e87c68b
commit 558d885276
8 changed files with 478 additions and 332 deletions

View file

@ -49,7 +49,7 @@
this.titleLabel.ForeColor = System.Drawing.SystemColors.ControlText;
this.titleLabel.Location = new System.Drawing.Point(79, 9);
this.titleLabel.Name = "titleLabel";
this.titleLabel.Size = new System.Drawing.Size(157, 25);
this.titleLabel.Size = new System.Drawing.Size(201, 32);
this.titleLabel.TabIndex = 3;
this.titleLabel.Text = "Nothing Playing";
this.titleLabel.UseMnemonic = false;
@ -61,7 +61,7 @@
this.progressIndicator.ForeColor = System.Drawing.SystemColors.ControlText;
this.progressIndicator.Location = new System.Drawing.Point(79, 35);
this.progressIndicator.Name = "progressIndicator";
this.progressIndicator.Size = new System.Drawing.Size(129, 21);
this.progressIndicator.Size = new System.Drawing.Size(163, 28);
this.progressIndicator.TabIndex = 4;
this.progressIndicator.Text = "(nothing playing)";
//
@ -136,8 +136,7 @@
//
// MiniPlayer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.CancelButton = this.fullscreenButton;
this.ClientSize = new System.Drawing.Size(360, 125);
this.Controls.Add(this.nextButton);

View file

@ -51,7 +51,7 @@
this.label1.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(0, -1);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(72, 30);
this.label1.Size = new System.Drawing.Size(96, 37);
this.label1.TabIndex = 0;
this.label1.Text = "label1";
//
@ -60,15 +60,14 @@
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(1, 29);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(52, 21);
this.label2.Size = new System.Drawing.Size(65, 28);
this.label2.TabIndex = 1;
this.label2.Text = "label2";
this.label2.Click += new System.EventHandler(this.label2_Click);
//
// Notification
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(296, 81);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);

View file

@ -45,37 +45,41 @@
//
this.listBox1.FormattingEnabled = true;
this.listBox1.HorizontalScrollbar = true;
this.listBox1.ItemHeight = 21;
this.listBox1.ItemHeight = 28;
this.listBox1.Location = new System.Drawing.Point(12, 40);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(460, 256);
this.listBox1.TabIndex = 0;
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(11, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(127, 21);
this.label1.Size = new System.Drawing.Size(158, 28);
this.label1.TabIndex = 1;
this.label1.Text = "Your song queue";
//
// groupBox1
//
this.groupBox1.AutoSize = true;
this.groupBox1.Controls.Add(this.addPlaylist);
this.groupBox1.Controls.Add(this.addSong);
this.groupBox1.Location = new System.Drawing.Point(478, 40);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(158, 117);
this.groupBox1.Size = new System.Drawing.Size(159, 139);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Add...";
this.groupBox1.Enter += new System.EventHandler(this.groupBox1_Enter);
//
// addPlaylist
//
this.addPlaylist.AutoSize = true;
this.addPlaylist.Location = new System.Drawing.Point(6, 68);
this.addPlaylist.Name = "addPlaylist";
this.addPlaylist.Size = new System.Drawing.Size(147, 34);
this.addPlaylist.Size = new System.Drawing.Size(147, 38);
this.addPlaylist.TabIndex = 1;
this.addPlaylist.Text = "Playlist File";
this.addPlaylist.UseVisualStyleBackColor = true;
@ -83,9 +87,10 @@
//
// addSong
//
this.addSong.AutoSize = true;
this.addSong.Location = new System.Drawing.Point(6, 28);
this.addSong.Name = "addSong";
this.addSong.Size = new System.Drawing.Size(147, 34);
this.addSong.Size = new System.Drawing.Size(147, 38);
this.addSong.TabIndex = 0;
this.addSong.Text = "Song";
this.addSong.UseVisualStyleBackColor = true;
@ -93,19 +98,22 @@
//
// groupBox2
//
this.groupBox2.AutoSize = true;
this.groupBox2.Controls.Add(this.clearQueue);
this.groupBox2.Location = new System.Drawing.Point(478, 163);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(158, 72);
this.groupBox2.Size = new System.Drawing.Size(159, 99);
this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Remove";
this.groupBox2.Enter += new System.EventHandler(this.groupBox2_Enter);
//
// clearQueue
//
this.clearQueue.AutoSize = true;
this.clearQueue.Location = new System.Drawing.Point(6, 28);
this.clearQueue.Name = "clearQueue";
this.clearQueue.Size = new System.Drawing.Size(147, 34);
this.clearQueue.Size = new System.Drawing.Size(147, 38);
this.clearQueue.TabIndex = 0;
this.clearQueue.Text = "Clear Queue";
this.clearQueue.UseVisualStyleBackColor = true;
@ -113,9 +121,10 @@
//
// next
//
this.next.AutoSize = true;
this.next.Location = new System.Drawing.Point(484, 241);
this.next.Name = "next";
this.next.Size = new System.Drawing.Size(147, 34);
this.next.Size = new System.Drawing.Size(147, 38);
this.next.TabIndex = 1;
this.next.Text = "Next Song";
this.next.UseVisualStyleBackColor = true;
@ -126,14 +135,15 @@
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(11, 299);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(52, 21);
this.label2.Size = new System.Drawing.Size(65, 28);
this.label2.TabIndex = 4;
this.label2.Text = "label2";
//
// QueueManagement
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(648, 327);
this.Controls.Add(this.label2);
this.Controls.Add(this.next);
@ -147,9 +157,12 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Queue Management";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.QueueManagement_FormClosing);
this.Load += new System.EventHandler(this.QueueManagement_Load);
this.LocationChanged += new System.EventHandler(this.QueueManagement_LocationChanged);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();

View file

@ -148,5 +148,25 @@ namespace FRESHMusicPlayer
listBox1.Items.Clear();
PopulateList();
}
private void QueueManagement_Load(object sender, EventArgs e)
{
}
private void groupBox1_Enter(object sender, EventArgs e)
{
}
private void groupBox2_Enter(object sender, EventArgs e)
{
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}

View file

@ -53,18 +53,19 @@
this.songtitleText.Font = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.songtitleText.Location = new System.Drawing.Point(4, 9);
this.songtitleText.Name = "songtitleText";
this.songtitleText.Size = new System.Drawing.Size(96, 37);
this.songtitleText.Size = new System.Drawing.Size(117, 46);
this.songtitleText.TabIndex = 1;
this.songtitleText.Text = "label1";
//
// groupBox1
//
this.groupBox1.AutoSize = true;
this.groupBox1.Controls.Add(this.yearText);
this.groupBox1.Controls.Add(this.genreText);
this.groupBox1.Controls.Add(this.albumText);
this.groupBox1.Location = new System.Drawing.Point(242, 56);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(394, 101);
this.groupBox1.Size = new System.Drawing.Size(394, 129);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Song Info";
@ -74,7 +75,7 @@
this.yearText.AutoSize = true;
this.yearText.Location = new System.Drawing.Point(19, 71);
this.yearText.Name = "yearText";
this.yearText.Size = new System.Drawing.Size(52, 21);
this.yearText.Size = new System.Drawing.Size(65, 28);
this.yearText.TabIndex = 2;
this.yearText.Text = "label1";
//
@ -83,7 +84,7 @@
this.genreText.AutoSize = true;
this.genreText.Location = new System.Drawing.Point(19, 50);
this.genreText.Name = "genreText";
this.genreText.Size = new System.Drawing.Size(52, 21);
this.genreText.Size = new System.Drawing.Size(65, 28);
this.genreText.TabIndex = 1;
this.genreText.Text = "label1";
//
@ -92,7 +93,7 @@
this.albumText.AutoSize = true;
this.albumText.Location = new System.Drawing.Point(19, 29);
this.albumText.Name = "albumText";
this.albumText.Size = new System.Drawing.Size(52, 21);
this.albumText.Size = new System.Drawing.Size(65, 28);
this.albumText.TabIndex = 0;
this.albumText.Text = "label1";
//
@ -112,7 +113,7 @@
this.discText.AutoSize = true;
this.discText.Location = new System.Drawing.Point(19, 50);
this.discText.Name = "discText";
this.discText.Size = new System.Drawing.Size(52, 21);
this.discText.Size = new System.Drawing.Size(65, 28);
this.discText.TabIndex = 1;
this.discText.Text = "label1";
//
@ -121,7 +122,7 @@
this.trackText.AutoSize = true;
this.trackText.Location = new System.Drawing.Point(19, 29);
this.trackText.Name = "trackText";
this.trackText.Size = new System.Drawing.Size(52, 21);
this.trackText.Size = new System.Drawing.Size(65, 28);
this.trackText.TabIndex = 0;
this.trackText.Text = "label1";
//
@ -140,7 +141,7 @@
this.bitrateText.AutoSize = true;
this.bitrateText.Location = new System.Drawing.Point(19, 29);
this.bitrateText.Name = "bitrateText";
this.bitrateText.Size = new System.Drawing.Size(52, 21);
this.bitrateText.Size = new System.Drawing.Size(65, 28);
this.bitrateText.TabIndex = 0;
this.bitrateText.Text = "label1";
//
@ -156,8 +157,8 @@
//
// SongInfo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(648, 323);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);

View file

@ -93,9 +93,9 @@
this.flowLayoutPanel2.Controls.Add(this.panel7);
this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
this.flowLayoutPanel2.Location = new System.Drawing.Point(0, 24);
this.flowLayoutPanel2.Location = new System.Drawing.Point(0, 30);
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
this.flowLayoutPanel2.Size = new System.Drawing.Size(581, 405);
this.flowLayoutPanel2.Size = new System.Drawing.Size(581, 399);
this.flowLayoutPanel2.TabIndex = 2;
this.flowLayoutPanel2.WrapContents = false;
//
@ -104,7 +104,7 @@
this.Editing_Label.AutoSize = true;
this.Editing_Label.Location = new System.Drawing.Point(3, 0);
this.Editing_Label.Name = "Editing_Label";
this.Editing_Label.Size = new System.Drawing.Size(58, 21);
this.Editing_Label.Size = new System.Drawing.Size(74, 28);
this.Editing_Label.TabIndex = 19;
this.Editing_Label.Text = "Editing";
//
@ -113,14 +113,16 @@
this.label15.AutoSize = true;
this.label15.Dock = System.Windows.Forms.DockStyle.Left;
this.label15.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
this.label15.Location = new System.Drawing.Point(3, 21);
this.label15.Location = new System.Drawing.Point(3, 28);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(85, 21);
this.label15.Size = new System.Drawing.Size(106, 28);
this.label15.TabIndex = 11;
this.label15.Text = "Track Info";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.AutoSize = true;
this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 66.66667F));
@ -134,7 +136,7 @@
this.tableLayoutPanel1.Controls.Add(this.Genre_Label, 0, 3);
this.tableLayoutPanel1.Controls.Add(this.Year_Box, 1, 4);
this.tableLayoutPanel1.Controls.Add(this.Year_Label, 0, 4);
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 45);
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 59);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 5;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
@ -142,24 +144,24 @@
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(539, 176);
this.tableLayoutPanel1.Size = new System.Drawing.Size(540, 200);
this.tableLayoutPanel1.TabIndex = 15;
//
// Album_Label
//
this.Album_Label.AutoSize = true;
this.Album_Label.Location = new System.Drawing.Point(3, 70);
this.Album_Label.Location = new System.Drawing.Point(3, 80);
this.Album_Label.Name = "Album_Label";
this.Album_Label.Size = new System.Drawing.Size(56, 21);
this.Album_Label.Size = new System.Drawing.Size(70, 28);
this.Album_Label.TabIndex = 5;
this.Album_Label.Text = "Album";
//
// Title_Label
//
this.Title_Label.AutoSize = true;
this.Title_Label.Location = new System.Drawing.Point(3, 35);
this.Title_Label.Location = new System.Drawing.Point(3, 40);
this.Title_Label.Name = "Title_Label";
this.Title_Label.Size = new System.Drawing.Size(39, 21);
this.Title_Label.Size = new System.Drawing.Size(49, 28);
this.Title_Label.TabIndex = 4;
this.Title_Label.Text = "Title";
//
@ -168,64 +170,65 @@
this.Artist_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.Artist_Box.Location = new System.Drawing.Point(182, 3);
this.Artist_Box.Name = "Artist_Box";
this.Artist_Box.Size = new System.Drawing.Size(354, 29);
this.Artist_Box.Size = new System.Drawing.Size(355, 34);
this.Artist_Box.TabIndex = 0;
//
// Title_Box
//
this.Title_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.Title_Box.Location = new System.Drawing.Point(182, 38);
this.Title_Box.Location = new System.Drawing.Point(182, 43);
this.Title_Box.Name = "Title_Box";
this.Title_Box.Size = new System.Drawing.Size(354, 29);
this.Title_Box.Size = new System.Drawing.Size(355, 34);
this.Title_Box.TabIndex = 0;
//
// Album_Box
//
this.Album_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.Album_Box.Location = new System.Drawing.Point(182, 73);
this.Album_Box.Location = new System.Drawing.Point(182, 83);
this.Album_Box.Name = "Album_Box";
this.Album_Box.Size = new System.Drawing.Size(354, 29);
this.Album_Box.Size = new System.Drawing.Size(355, 34);
this.Album_Box.TabIndex = 0;
//
// Artist_Label
//
this.Artist_Label.AutoSize = true;
this.Artist_Label.Location = new System.Drawing.Point(3, 0);
this.Artist_Label.Name = "Artist_Label";
this.Artist_Label.Size = new System.Drawing.Size(47, 21);
this.Artist_Label.Size = new System.Drawing.Size(59, 28);
this.Artist_Label.TabIndex = 0;
this.Artist_Label.Text = "Artist";
//
// Genre_Box
//
this.Genre_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.Genre_Box.Location = new System.Drawing.Point(182, 108);
this.Genre_Box.Location = new System.Drawing.Point(182, 123);
this.Genre_Box.Name = "Genre_Box";
this.Genre_Box.Size = new System.Drawing.Size(354, 29);
this.Genre_Box.Size = new System.Drawing.Size(355, 34);
this.Genre_Box.TabIndex = 6;
//
// Genre_Label
//
this.Genre_Label.AutoSize = true;
this.Genre_Label.Location = new System.Drawing.Point(3, 105);
this.Genre_Label.Location = new System.Drawing.Point(3, 120);
this.Genre_Label.Name = "Genre_Label";
this.Genre_Label.Size = new System.Drawing.Size(52, 21);
this.Genre_Label.Size = new System.Drawing.Size(64, 28);
this.Genre_Label.TabIndex = 7;
this.Genre_Label.Text = "Genre";
//
// Year_Box
//
this.Year_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.Year_Box.Location = new System.Drawing.Point(182, 143);
this.Year_Box.Location = new System.Drawing.Point(182, 163);
this.Year_Box.Name = "Year_Box";
this.Year_Box.Size = new System.Drawing.Size(354, 29);
this.Year_Box.Size = new System.Drawing.Size(355, 34);
this.Year_Box.TabIndex = 9;
//
// Year_Label
//
this.Year_Label.AutoSize = true;
this.Year_Label.Location = new System.Drawing.Point(3, 140);
this.Year_Label.Location = new System.Drawing.Point(3, 160);
this.Year_Label.Name = "Year_Label";
this.Year_Label.Size = new System.Drawing.Size(40, 21);
this.Year_Label.Size = new System.Drawing.Size(48, 28);
this.Year_Label.TabIndex = 8;
this.Year_Label.Text = "Year";
//
@ -234,14 +237,16 @@
this.label1.AutoSize = true;
this.label1.Dock = System.Windows.Forms.DockStyle.Left;
this.label1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
this.label1.Location = new System.Drawing.Point(3, 224);
this.label1.Location = new System.Drawing.Point(3, 262);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 21);
this.label1.Size = new System.Drawing.Size(118, 28);
this.label1.TabIndex = 13;
this.label1.Text = "Album Info";
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.AutoSize = true;
this.tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.tableLayoutPanel2.ColumnCount = 2;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 66.66667F));
@ -253,7 +258,7 @@
this.tableLayoutPanel2.Controls.Add(this.AlbumArtist_Label, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.DiscNum_Box, 1, 3);
this.tableLayoutPanel2.Controls.Add(this.DiscNum_Label, 0, 3);
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 248);
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 293);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 4;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
@ -261,24 +266,24 @@
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(539, 139);
this.tableLayoutPanel2.Size = new System.Drawing.Size(540, 160);
this.tableLayoutPanel2.TabIndex = 16;
//
// TrackNum_Label
//
this.TrackNum_Label.AutoSize = true;
this.TrackNum_Label.Location = new System.Drawing.Point(3, 70);
this.TrackNum_Label.Location = new System.Drawing.Point(3, 80);
this.TrackNum_Label.Name = "TrackNum_Label";
this.TrackNum_Label.Size = new System.Drawing.Size(108, 21);
this.TrackNum_Label.Size = new System.Drawing.Size(133, 28);
this.TrackNum_Label.TabIndex = 5;
this.TrackNum_Label.Text = "Track Number";
//
// Composer_Label
//
this.Composer_Label.AutoSize = true;
this.Composer_Label.Location = new System.Drawing.Point(3, 35);
this.Composer_Label.Location = new System.Drawing.Point(3, 40);
this.Composer_Label.Name = "Composer_Label";
this.Composer_Label.Size = new System.Drawing.Size(82, 21);
this.Composer_Label.Size = new System.Drawing.Size(102, 28);
this.Composer_Label.TabIndex = 4;
this.Composer_Label.Text = "Composer";
//
@ -287,47 +292,48 @@
this.AlbumArtist_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.AlbumArtist_Box.Location = new System.Drawing.Point(182, 3);
this.AlbumArtist_Box.Name = "AlbumArtist_Box";
this.AlbumArtist_Box.Size = new System.Drawing.Size(354, 29);
this.AlbumArtist_Box.Size = new System.Drawing.Size(355, 34);
this.AlbumArtist_Box.TabIndex = 0;
//
// Composer_Box
//
this.Composer_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.Composer_Box.Location = new System.Drawing.Point(182, 38);
this.Composer_Box.Location = new System.Drawing.Point(182, 43);
this.Composer_Box.Name = "Composer_Box";
this.Composer_Box.Size = new System.Drawing.Size(354, 29);
this.Composer_Box.Size = new System.Drawing.Size(355, 34);
this.Composer_Box.TabIndex = 0;
//
// TrackNum_Box
//
this.TrackNum_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.TrackNum_Box.Location = new System.Drawing.Point(182, 73);
this.TrackNum_Box.Location = new System.Drawing.Point(182, 83);
this.TrackNum_Box.Name = "TrackNum_Box";
this.TrackNum_Box.Size = new System.Drawing.Size(354, 29);
this.TrackNum_Box.Size = new System.Drawing.Size(355, 34);
this.TrackNum_Box.TabIndex = 0;
//
// AlbumArtist_Label
//
this.AlbumArtist_Label.AutoSize = true;
this.AlbumArtist_Label.Location = new System.Drawing.Point(3, 0);
this.AlbumArtist_Label.Name = "AlbumArtist_Label";
this.AlbumArtist_Label.Size = new System.Drawing.Size(104, 21);
this.AlbumArtist_Label.Size = new System.Drawing.Size(122, 28);
this.AlbumArtist_Label.TabIndex = 0;
this.AlbumArtist_Label.Text = "Album Artist";
//
// DiscNum_Box
//
this.DiscNum_Box.Dock = System.Windows.Forms.DockStyle.Fill;
this.DiscNum_Box.Location = new System.Drawing.Point(182, 108);
this.DiscNum_Box.Location = new System.Drawing.Point(182, 123);
this.DiscNum_Box.Name = "DiscNum_Box";
this.DiscNum_Box.Size = new System.Drawing.Size(354, 29);
this.DiscNum_Box.Size = new System.Drawing.Size(355, 34);
this.DiscNum_Box.TabIndex = 6;
//
// DiscNum_Label
//
this.DiscNum_Label.AutoSize = true;
this.DiscNum_Label.Location = new System.Drawing.Point(3, 105);
this.DiscNum_Label.Location = new System.Drawing.Point(3, 120);
this.DiscNum_Label.Name = "DiscNum_Label";
this.DiscNum_Label.Size = new System.Drawing.Size(101, 21);
this.DiscNum_Label.Size = new System.Drawing.Size(125, 28);
this.DiscNum_Label.TabIndex = 7;
this.DiscNum_Label.Text = "Disc Number";
//
@ -336,18 +342,18 @@
this.label2.AutoSize = true;
this.label2.Dock = System.Windows.Forms.DockStyle.Left;
this.label2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
this.label2.Location = new System.Drawing.Point(3, 390);
this.label2.Location = new System.Drawing.Point(3, 456);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(81, 21);
this.label2.Size = new System.Drawing.Size(103, 28);
this.label2.TabIndex = 14;
this.label2.Text = "Cover Art";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(3, 411);
this.label4.Location = new System.Drawing.Point(3, 484);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(545, 42);
this.label4.Size = new System.Drawing.Size(548, 84);
this.label4.TabIndex = 20;
this.label4.Text = "You are editing multiple tracks at the same time. Only the information for the fi" +
"rst track will be displayed here. (changes will apply for all tracks)";
@ -355,11 +361,12 @@
//
// panel2
//
this.panel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.panel2.Controls.Add(this.label3);
this.panel2.Controls.Add(this.PageBox);
this.panel2.Controls.Add(this.CoverArt_Label);
this.panel2.Controls.Add(this.CoverArt_Box);
this.panel2.Location = new System.Drawing.Point(3, 456);
this.panel2.Location = new System.Drawing.Point(3, 571);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(536, 177);
this.panel2.TabIndex = 18;
@ -367,18 +374,18 @@
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(178, 120);
this.label3.Location = new System.Drawing.Point(178, 106);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 21);
this.label3.Size = new System.Drawing.Size(66, 28);
this.label3.TabIndex = 22;
this.label3.Text = "Image";
//
// PageBox
//
this.PageBox.FormattingEnabled = true;
this.PageBox.Location = new System.Drawing.Point(180, 144);
this.PageBox.Location = new System.Drawing.Point(180, 136);
this.PageBox.Name = "PageBox";
this.PageBox.Size = new System.Drawing.Size(121, 29);
this.PageBox.Size = new System.Drawing.Size(121, 36);
this.PageBox.TabIndex = 21;
this.PageBox.SelectedIndexChanged += new System.EventHandler(this.PageBox_SelectedIndexChanged);
//
@ -387,7 +394,7 @@
this.CoverArt_Label.AutoSize = true;
this.CoverArt_Label.Location = new System.Drawing.Point(176, 3);
this.CoverArt_Label.Name = "CoverArt_Label";
this.CoverArt_Label.Size = new System.Drawing.Size(152, 21);
this.CoverArt_Label.Size = new System.Drawing.Size(191, 28);
this.CoverArt_Label.TabIndex = 20;
this.CoverArt_Label.Text = "No cover art present";
//
@ -402,7 +409,7 @@
//
// panel7
//
this.panel7.Location = new System.Drawing.Point(3, 639);
this.panel7.Location = new System.Drawing.Point(3, 754);
this.panel7.Name = "panel7";
this.panel7.Size = new System.Drawing.Size(536, 24);
this.panel7.TabIndex = 12;
@ -429,11 +436,12 @@
//
// menuStrip1
//
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(581, 24);
this.menuStrip1.Size = new System.Drawing.Size(581, 30);
this.menuStrip1.TabIndex = 2;
this.menuStrip1.Text = "menuStrip1";
//
@ -446,14 +454,14 @@
this.toolStripSeparator1,
this.exitTagEditorToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Size = new System.Drawing.Size(46, 26);
this.fileToolStripMenuItem.Text = "File";
//
// newWindowToolStripMenuItem
//
this.newWindowToolStripMenuItem.Name = "newWindowToolStripMenuItem";
this.newWindowToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.newWindowToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.newWindowToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
this.newWindowToolStripMenuItem.Text = "New Window";
this.newWindowToolStripMenuItem.Click += new System.EventHandler(this.newWindowToolStripMenuItem_Click);
//
@ -461,7 +469,7 @@
//
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.openToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.openToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
this.openToolStripMenuItem.Text = "Open";
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
//
@ -469,26 +477,26 @@
//
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.saveToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.saveToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
this.saveToolStripMenuItem.Text = "Save";
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(185, 6);
this.toolStripSeparator1.Size = new System.Drawing.Size(231, 6);
//
// exitTagEditorToolStripMenuItem
//
this.exitTagEditorToolStripMenuItem.Name = "exitTagEditorToolStripMenuItem";
this.exitTagEditorToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.exitTagEditorToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
this.exitTagEditorToolStripMenuItem.Text = "Exit Tag Editor";
this.exitTagEditorToolStripMenuItem.Click += new System.EventHandler(this.exitTagEditorToolStripMenuItem_Click);
//
// TagEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(581, 472);
this.Controls.Add(this.flowLayoutPanel2);
this.Controls.Add(this.panel1);

File diff suppressed because it is too large Load diff

View file

@ -108,7 +108,10 @@ namespace FRESHMusicPlayer
private void trackInfoToolStripMenuItem_Click(object sender, EventArgs e)
{
using (SongInfo songInfo = new SongInfo())
{
songInfo.ShowDialog();
}
}
private void infoButton_MouseClick(object sender, MouseEventArgs e) => infobuttonContextMenu.Show(infoButton, e.Location);
#endregion
@ -673,7 +676,7 @@ namespace FRESHMusicPlayer
{
Player.currentvolume = Properties.Settings.Default.General_Volume;
var UpdateCheck = Properties.Settings.Default.General_LastUpdate;
UpdateStatusLabel.Text = $"Last Checked {UpdateCheck.Month.ToString()}/{UpdateCheck.Day.ToString()}/{UpdateCheck.Year.ToString()} at {UpdateCheck.Hour.ToString("D2")}:{UpdateCheck.Minute.ToString("D2")}";
UpdateStatusLabel.Text = $"Last Checked {UpdateCheck}";
volumeBar.Value = (int)(Properties.Settings.Default.General_Volume * 100.0f);
MiniPlayerOpacityTrackBar.Value = (int)(Properties.Settings.Default.MiniPlayer_UnfocusedOpacity * 100.0f);
if (Properties.Settings.Default.Appearance_DarkMode) darkradioButton.Checked = true; else lightradioButton.Checked = true;