mirror of
https://github.com/Royce551/FRESHMusicPlayer-WinForms.git
synced 2025-01-22 10:51:58 -05:00
New menubar
This commit is contained in:
parent
469df61bda
commit
449b525f06
2 changed files with 126 additions and 122 deletions
|
@ -34,8 +34,22 @@
|
|||
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.openAudioFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.openPlaylistFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.playbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.infobuttonContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.previousTrackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.repeatOnceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.shuffleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.queuemanagementMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.miniplayerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.trackInfoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.tagEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.editToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.editSelectedInSongsTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.tabControl1 = new System.Windows.Forms.TabControl();
|
||||
this.tabPage2 = new System.Windows.Forms.TabPage();
|
||||
this.tabControl2 = new System.Windows.Forms.TabControl();
|
||||
|
@ -130,17 +144,6 @@
|
|||
this.VolumeToggleButton = new System.Windows.Forms.Button();
|
||||
this.albumartBox = new System.Windows.Forms.PictureBox();
|
||||
this.infoButton = new System.Windows.Forms.Button();
|
||||
this.infobuttonContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.previousTrackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.repeatOnceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.shuffleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.queuemanagementMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.miniplayerMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.trackInfoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.tagEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.editToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.editSelectedInSongsTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.stopButton = new System.Windows.Forms.Button();
|
||||
this.pauseplayButton = new System.Windows.Forms.Button();
|
||||
this.titleLabel = new System.Windows.Forms.Label();
|
||||
|
@ -149,10 +152,8 @@
|
|||
this.progressTimer = new System.Windows.Forms.Timer(this.components);
|
||||
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
||||
this.VolumeBarTimer = new System.Windows.Forms.Timer(this.components);
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.playbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.menuBar.SuspendLayout();
|
||||
this.infobuttonContextMenu.SuspendLayout();
|
||||
this.tabControl1.SuspendLayout();
|
||||
this.tabPage2.SuspendLayout();
|
||||
this.tabControl2.SuspendLayout();
|
||||
|
@ -189,7 +190,6 @@
|
|||
this.controlsBox.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.volumeBar)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.albumartBox)).BeginInit();
|
||||
this.infobuttonContextMenu.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.ProgressBar)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
|
@ -231,6 +231,105 @@
|
|||
this.openPlaylistFileToolStripMenuItem.Text = "Open Playlist File";
|
||||
this.openPlaylistFileToolStripMenuItem.Click += new System.EventHandler(this.openPlaylistFileToolStripMenuItem_Click);
|
||||
//
|
||||
// exitToolStripMenuItem
|
||||
//
|
||||
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
||||
this.exitToolStripMenuItem.Size = new System.Drawing.Size(202, 22);
|
||||
this.exitToolStripMenuItem.Text = "Exit";
|
||||
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
||||
//
|
||||
// playbackToolStripMenuItem
|
||||
//
|
||||
this.playbackToolStripMenuItem.DropDown = this.infobuttonContextMenu;
|
||||
this.playbackToolStripMenuItem.Name = "playbackToolStripMenuItem";
|
||||
this.playbackToolStripMenuItem.Size = new System.Drawing.Size(66, 22);
|
||||
this.playbackToolStripMenuItem.Text = "Playback";
|
||||
//
|
||||
// infobuttonContextMenu
|
||||
//
|
||||
this.infobuttonContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.previousTrackToolStripMenuItem,
|
||||
this.repeatOnceToolStripMenuItem,
|
||||
this.shuffleToolStripMenuItem,
|
||||
this.toolStripSeparator1,
|
||||
this.queuemanagementMenuItem,
|
||||
this.miniplayerMenuItem,
|
||||
this.trackInfoToolStripMenuItem,
|
||||
this.tagEditorToolStripMenuItem});
|
||||
this.infobuttonContextMenu.Name = "infobuttonContextMenu";
|
||||
this.infobuttonContextMenu.OwnerItem = this.playbackToolStripMenuItem;
|
||||
this.infobuttonContextMenu.Size = new System.Drawing.Size(184, 164);
|
||||
//
|
||||
// previousTrackToolStripMenuItem
|
||||
//
|
||||
this.previousTrackToolStripMenuItem.Name = "previousTrackToolStripMenuItem";
|
||||
this.previousTrackToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.previousTrackToolStripMenuItem.Text = "Previous Track";
|
||||
this.previousTrackToolStripMenuItem.Click += new System.EventHandler(this.previousTrackToolStripMenuItem_Click);
|
||||
//
|
||||
// repeatOnceToolStripMenuItem
|
||||
//
|
||||
this.repeatOnceToolStripMenuItem.Name = "repeatOnceToolStripMenuItem";
|
||||
this.repeatOnceToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.repeatOnceToolStripMenuItem.Text = "Repeat One";
|
||||
this.repeatOnceToolStripMenuItem.Click += new System.EventHandler(this.repeatOnceToolStripMenuItem_Click);
|
||||
//
|
||||
// shuffleToolStripMenuItem
|
||||
//
|
||||
this.shuffleToolStripMenuItem.Name = "shuffleToolStripMenuItem";
|
||||
this.shuffleToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.shuffleToolStripMenuItem.Text = "Shuffle";
|
||||
this.shuffleToolStripMenuItem.Click += new System.EventHandler(this.shuffleToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator1
|
||||
//
|
||||
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
||||
this.toolStripSeparator1.Size = new System.Drawing.Size(180, 6);
|
||||
//
|
||||
// queuemanagementMenuItem
|
||||
//
|
||||
this.queuemanagementMenuItem.Name = "queuemanagementMenuItem";
|
||||
this.queuemanagementMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.queuemanagementMenuItem.Text = "Queue Management";
|
||||
this.queuemanagementMenuItem.Click += new System.EventHandler(this.queuemanagementMenuItem_Click);
|
||||
//
|
||||
// miniplayerMenuItem
|
||||
//
|
||||
this.miniplayerMenuItem.Name = "miniplayerMenuItem";
|
||||
this.miniplayerMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.miniplayerMenuItem.Text = "Mini Player";
|
||||
this.miniplayerMenuItem.Click += new System.EventHandler(this.miniplayerMenuItem_Click);
|
||||
//
|
||||
// trackInfoToolStripMenuItem
|
||||
//
|
||||
this.trackInfoToolStripMenuItem.Name = "trackInfoToolStripMenuItem";
|
||||
this.trackInfoToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.trackInfoToolStripMenuItem.Text = "Track Info";
|
||||
this.trackInfoToolStripMenuItem.Click += new System.EventHandler(this.trackInfoToolStripMenuItem_Click);
|
||||
//
|
||||
// tagEditorToolStripMenuItem
|
||||
//
|
||||
this.tagEditorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.editToolStripMenuItem1,
|
||||
this.editSelectedInSongsTabToolStripMenuItem});
|
||||
this.tagEditorToolStripMenuItem.Name = "tagEditorToolStripMenuItem";
|
||||
this.tagEditorToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.tagEditorToolStripMenuItem.Text = "Tag Editor";
|
||||
//
|
||||
// editToolStripMenuItem1
|
||||
//
|
||||
this.editToolStripMenuItem1.Name = "editToolStripMenuItem1";
|
||||
this.editToolStripMenuItem1.Size = new System.Drawing.Size(218, 22);
|
||||
this.editToolStripMenuItem1.Text = "Edit Currently Playing Track";
|
||||
this.editToolStripMenuItem1.Click += new System.EventHandler(this.editToolStripMenuItem1_Click);
|
||||
//
|
||||
// editSelectedInSongsTabToolStripMenuItem
|
||||
//
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Name = "editSelectedInSongsTabToolStripMenuItem";
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Text = "Edit Selected (In Songs Tab)";
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Click += new System.EventHandler(this.editSelectedInSongsTabToolStripMenuItem_Click);
|
||||
//
|
||||
// helpToolStripMenuItem
|
||||
//
|
||||
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
|
@ -247,6 +346,13 @@
|
|||
this.aboutFRESHMusicPlayerToolStripMenuItem.Text = "Open Keyboard Navigation Help";
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem.Click += new System.EventHandler(this.aboutFRESHMusicPlayerToolStripMenuItem_Click);
|
||||
//
|
||||
// aboutFRESHMusicPlayerToolStripMenuItem1
|
||||
//
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Name = "aboutFRESHMusicPlayerToolStripMenuItem1";
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Size = new System.Drawing.Size(245, 22);
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Text = "About FRESHMusicPlayer";
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Click += new System.EventHandler(this.aboutFRESHMusicPlayerToolStripMenuItem1_Click);
|
||||
//
|
||||
// tabControl1
|
||||
//
|
||||
this.tabControl1.Controls.Add(this.tabPage2);
|
||||
|
@ -1357,90 +1463,6 @@
|
|||
this.infoButton.Click += new System.EventHandler(this.infoButton_Click);
|
||||
this.infoButton.MouseClick += new System.Windows.Forms.MouseEventHandler(this.infoButton_MouseClick);
|
||||
//
|
||||
// infobuttonContextMenu
|
||||
//
|
||||
this.infobuttonContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.previousTrackToolStripMenuItem,
|
||||
this.repeatOnceToolStripMenuItem,
|
||||
this.shuffleToolStripMenuItem,
|
||||
this.toolStripSeparator1,
|
||||
this.queuemanagementMenuItem,
|
||||
this.miniplayerMenuItem,
|
||||
this.trackInfoToolStripMenuItem,
|
||||
this.tagEditorToolStripMenuItem});
|
||||
this.infobuttonContextMenu.Name = "infobuttonContextMenu";
|
||||
this.infobuttonContextMenu.Size = new System.Drawing.Size(184, 164);
|
||||
//
|
||||
// previousTrackToolStripMenuItem
|
||||
//
|
||||
this.previousTrackToolStripMenuItem.Name = "previousTrackToolStripMenuItem";
|
||||
this.previousTrackToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.previousTrackToolStripMenuItem.Text = "Previous Track";
|
||||
this.previousTrackToolStripMenuItem.Click += new System.EventHandler(this.previousTrackToolStripMenuItem_Click);
|
||||
//
|
||||
// repeatOnceToolStripMenuItem
|
||||
//
|
||||
this.repeatOnceToolStripMenuItem.Name = "repeatOnceToolStripMenuItem";
|
||||
this.repeatOnceToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.repeatOnceToolStripMenuItem.Text = "Repeat One";
|
||||
this.repeatOnceToolStripMenuItem.Click += new System.EventHandler(this.repeatOnceToolStripMenuItem_Click);
|
||||
//
|
||||
// shuffleToolStripMenuItem
|
||||
//
|
||||
this.shuffleToolStripMenuItem.Name = "shuffleToolStripMenuItem";
|
||||
this.shuffleToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.shuffleToolStripMenuItem.Text = "Shuffle";
|
||||
this.shuffleToolStripMenuItem.Click += new System.EventHandler(this.shuffleToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator1
|
||||
//
|
||||
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
||||
this.toolStripSeparator1.Size = new System.Drawing.Size(180, 6);
|
||||
//
|
||||
// queuemanagementMenuItem
|
||||
//
|
||||
this.queuemanagementMenuItem.Name = "queuemanagementMenuItem";
|
||||
this.queuemanagementMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.queuemanagementMenuItem.Text = "Queue Management";
|
||||
this.queuemanagementMenuItem.Click += new System.EventHandler(this.queuemanagementMenuItem_Click);
|
||||
//
|
||||
// miniplayerMenuItem
|
||||
//
|
||||
this.miniplayerMenuItem.Name = "miniplayerMenuItem";
|
||||
this.miniplayerMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.miniplayerMenuItem.Text = "Mini Player";
|
||||
this.miniplayerMenuItem.Click += new System.EventHandler(this.miniplayerMenuItem_Click);
|
||||
//
|
||||
// trackInfoToolStripMenuItem
|
||||
//
|
||||
this.trackInfoToolStripMenuItem.Name = "trackInfoToolStripMenuItem";
|
||||
this.trackInfoToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.trackInfoToolStripMenuItem.Text = "Track Info";
|
||||
this.trackInfoToolStripMenuItem.Click += new System.EventHandler(this.trackInfoToolStripMenuItem_Click);
|
||||
//
|
||||
// tagEditorToolStripMenuItem
|
||||
//
|
||||
this.tagEditorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.editToolStripMenuItem1,
|
||||
this.editSelectedInSongsTabToolStripMenuItem});
|
||||
this.tagEditorToolStripMenuItem.Name = "tagEditorToolStripMenuItem";
|
||||
this.tagEditorToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
|
||||
this.tagEditorToolStripMenuItem.Text = "Tag Editor";
|
||||
//
|
||||
// editToolStripMenuItem1
|
||||
//
|
||||
this.editToolStripMenuItem1.Name = "editToolStripMenuItem1";
|
||||
this.editToolStripMenuItem1.Size = new System.Drawing.Size(218, 22);
|
||||
this.editToolStripMenuItem1.Text = "Edit Currently Playing Track";
|
||||
this.editToolStripMenuItem1.Click += new System.EventHandler(this.editToolStripMenuItem1_Click);
|
||||
//
|
||||
// editSelectedInSongsTabToolStripMenuItem
|
||||
//
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Name = "editSelectedInSongsTabToolStripMenuItem";
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Size = new System.Drawing.Size(218, 22);
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Text = "Edit Selected (In Songs Tab)";
|
||||
this.editSelectedInSongsTabToolStripMenuItem.Click += new System.EventHandler(this.editSelectedInSongsTabToolStripMenuItem_Click);
|
||||
//
|
||||
// stopButton
|
||||
//
|
||||
this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -1509,34 +1531,13 @@
|
|||
//
|
||||
this.VolumeBarTimer.Tick += new System.EventHandler(this.VolumeBarTimer_Tick);
|
||||
//
|
||||
// aboutFRESHMusicPlayerToolStripMenuItem1
|
||||
//
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Name = "aboutFRESHMusicPlayerToolStripMenuItem1";
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Size = new System.Drawing.Size(245, 22);
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Text = "About FRESHMusicPlayer";
|
||||
this.aboutFRESHMusicPlayerToolStripMenuItem1.Click += new System.EventHandler(this.aboutFRESHMusicPlayerToolStripMenuItem1_Click);
|
||||
//
|
||||
// exitToolStripMenuItem
|
||||
//
|
||||
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
||||
this.exitToolStripMenuItem.Size = new System.Drawing.Size(202, 22);
|
||||
this.exitToolStripMenuItem.Text = "Exit";
|
||||
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
||||
//
|
||||
// playbackToolStripMenuItem
|
||||
//
|
||||
this.playbackToolStripMenuItem.DropDown = this.infobuttonContextMenu;
|
||||
this.playbackToolStripMenuItem.Name = "playbackToolStripMenuItem";
|
||||
this.playbackToolStripMenuItem.Size = new System.Drawing.Size(66, 22);
|
||||
this.playbackToolStripMenuItem.Text = "Playback";
|
||||
//
|
||||
// UserInterface
|
||||
//
|
||||
this.AllowDrop = true;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(160)))), ((int)(((byte)(219)))));
|
||||
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
||||
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
||||
this.ClientSize = new System.Drawing.Size(691, 473);
|
||||
this.Controls.Add(this.tabControl1);
|
||||
this.Controls.Add(this.menuBar);
|
||||
|
@ -1555,6 +1556,7 @@
|
|||
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.UserInterface_DragEnter);
|
||||
this.menuBar.ResumeLayout(false);
|
||||
this.menuBar.PerformLayout();
|
||||
this.infobuttonContextMenu.ResumeLayout(false);
|
||||
this.tabControl1.ResumeLayout(false);
|
||||
this.tabPage2.ResumeLayout(false);
|
||||
this.tabControl2.ResumeLayout(false);
|
||||
|
@ -1601,7 +1603,6 @@
|
|||
this.controlsBox.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.volumeBar)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.albumartBox)).EndInit();
|
||||
this.infobuttonContextMenu.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.ProgressBar)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
|
|
@ -140,6 +140,9 @@
|
|||
oSB/8qCYxT3kXbhtHqU7/AcqlW/2AjAQCUa83QAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>247, 17</value>
|
||||
</metadata>
|
||||
<metadata name="progressTimer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>117, 17</value>
|
||||
</metadata>
|
||||
|
|
Loading…
Reference in a new issue