|
|
@@ -37,6 +37,9 @@
|
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
+ this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
+ this.playToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
+ this.ControlsPanel = new System.Windows.Forms.Panel();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.SongsTableView)).BeginInit();
|
|
|
this.MainPanel.SuspendLayout();
|
|
|
this.MenuStrip.SuspendLayout();
|
|
|
@@ -58,7 +61,7 @@
|
|
|
this.SongsTableView.ReadOnly = true;
|
|
|
this.SongsTableView.RowHeadersVisible = false;
|
|
|
this.SongsTableView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
|
- this.SongsTableView.Size = new System.Drawing.Size(760, 172);
|
|
|
+ this.SongsTableView.Size = new System.Drawing.Size(760, 148);
|
|
|
this.SongsTableView.TabIndex = 0;
|
|
|
//
|
|
|
// GenreListBox
|
|
|
@@ -92,20 +95,23 @@
|
|
|
//
|
|
|
// MainPanel
|
|
|
//
|
|
|
+ this.MainPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Left)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
this.MainPanel.Controls.Add(this.GenreListBox);
|
|
|
this.MainPanel.Controls.Add(this.ArtistListBox);
|
|
|
this.MainPanel.Controls.Add(this.AlbumListView);
|
|
|
this.MainPanel.Controls.Add(this.SongsTableView);
|
|
|
- this.MainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
this.MainPanel.Location = new System.Drawing.Point(0, 24);
|
|
|
this.MainPanel.Name = "MainPanel";
|
|
|
- this.MainPanel.Size = new System.Drawing.Size(784, 337);
|
|
|
+ this.MainPanel.Size = new System.Drawing.Size(784, 313);
|
|
|
this.MainPanel.TabIndex = 5;
|
|
|
//
|
|
|
// MenuStrip
|
|
|
//
|
|
|
this.MenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
- this.fileToolStripMenuItem});
|
|
|
+ this.fileToolStripMenuItem,
|
|
|
+ this.viewToolStripMenuItem});
|
|
|
this.MenuStrip.Location = new System.Drawing.Point(0, 0);
|
|
|
this.MenuStrip.Name = "MenuStrip";
|
|
|
this.MenuStrip.Size = new System.Drawing.Size(784, 24);
|
|
|
@@ -133,11 +139,36 @@
|
|
|
this.saveToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
|
|
|
this.saveToolStripMenuItem.Text = "Save";
|
|
|
//
|
|
|
+ // viewToolStripMenuItem
|
|
|
+ //
|
|
|
+ this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
+ this.playToolStripMenuItem});
|
|
|
+ this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
|
|
|
+ this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
|
|
+ this.viewToolStripMenuItem.Text = "View";
|
|
|
+ //
|
|
|
+ // playToolStripMenuItem
|
|
|
+ //
|
|
|
+ this.playToolStripMenuItem.Name = "playToolStripMenuItem";
|
|
|
+ this.playToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
|
|
|
+ this.playToolStripMenuItem.Text = "Play";
|
|
|
+ this.playToolStripMenuItem.Click += new System.EventHandler(this.playToolStripMenuItem_Click);
|
|
|
+ //
|
|
|
+ // ControlsPanel
|
|
|
+ //
|
|
|
+ this.ControlsPanel.BackColor = System.Drawing.SystemColors.HotTrack;
|
|
|
+ this.ControlsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
|
+ this.ControlsPanel.Location = new System.Drawing.Point(0, 343);
|
|
|
+ this.ControlsPanel.Name = "ControlsPanel";
|
|
|
+ this.ControlsPanel.Size = new System.Drawing.Size(784, 119);
|
|
|
+ this.ControlsPanel.TabIndex = 4;
|
|
|
+ //
|
|
|
// MainForm
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
- this.ClientSize = new System.Drawing.Size(784, 361);
|
|
|
+ this.ClientSize = new System.Drawing.Size(784, 462);
|
|
|
+ this.Controls.Add(this.ControlsPanel);
|
|
|
this.Controls.Add(this.MainPanel);
|
|
|
this.Controls.Add(this.MenuStrip);
|
|
|
this.MainMenuStrip = this.MenuStrip;
|
|
|
@@ -164,6 +195,9 @@
|
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
|
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
|
|
|
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
|
|
|
+ private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
|
|
|
+ private System.Windows.Forms.ToolStripMenuItem playToolStripMenuItem;
|
|
|
+ private System.Windows.Forms.Panel ControlsPanel;
|
|
|
}
|
|
|
}
|
|
|
|