first test

This commit is contained in:
minster586
2026-08-10 03:41:48 -04:00
parent 4c6eae510e
commit 4cefd8fb7d
10 changed files with 2022 additions and 26 deletions
+36
View File
@@ -37,12 +37,16 @@
connect_button = new Button();
disconnect_button = new Button();
statusStrip1 = new StatusStrip();
statusLabelLeft = new ToolStripStatusLabel();
statusLabelCenter = new ToolStripStatusLabel();
statusLabelRight = new ToolStripStatusLabel();
stations_button = new Button();
groupBox1 = new GroupBox();
btnPlayPause = new Button();
btnSkip = new Button();
menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)album_art_picture_box).BeginInit();
statusStrip1.SuspendLayout();
groupBox1.SuspendLayout();
SuspendLayout();
//
@@ -67,6 +71,7 @@
settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
settingsToolStripMenuItem.Size = new Size(124, 22);
settingsToolStripMenuItem.Text = "Settings";
settingsToolStripMenuItem.Click += menuSettings_Click;
//
// profilesToolStripMenuItem
//
@@ -106,6 +111,7 @@
connect_button.TabIndex = 4;
connect_button.Text = "Connect";
connect_button.UseVisualStyleBackColor = true;
connect_button.Click += btnConnect_Click;
//
// disconnect_button
//
@@ -115,15 +121,37 @@
disconnect_button.TabIndex = 5;
disconnect_button.Text = "Disconnect";
disconnect_button.UseVisualStyleBackColor = true;
disconnect_button.Click += btnDisconnect_Click;
//
// statusStrip1
//
statusStrip1.Items.AddRange(new ToolStripItem[] { statusLabelLeft, statusLabelCenter, statusLabelRight });
statusStrip1.Location = new Point(0, 377);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new Size(666, 22);
statusStrip1.TabIndex = 6;
statusStrip1.Text = "statusStrip1";
//
// statusLabelLeft
//
statusLabelLeft.Name = "statusLabelLeft";
statusLabelLeft.Size = new Size(100, 17);
statusLabelLeft.Text = "● Disconnected";
statusLabelLeft.ForeColor = Color.Red;
//
// statusLabelCenter
//
statusLabelCenter.Name = "statusLabelCenter";
statusLabelCenter.Size = new Size(451, 17);
statusLabelCenter.Spring = true;
statusLabelCenter.Text = "Profile: None";
//
// statusLabelRight
//
statusLabelRight.Name = "statusLabelRight";
statusLabelRight.Size = new Size(100, 17);
statusLabelRight.Text = "Ready";
//
// stations_button
//
stations_button.Location = new Point(385, 253);
@@ -132,6 +160,7 @@
stations_button.TabIndex = 7;
stations_button.Text = "Stations";
stations_button.UseVisualStyleBackColor = true;
stations_button.Click += btnStations_Click;
//
// groupBox1
//
@@ -152,6 +181,7 @@
btnPlayPause.TabIndex = 0;
btnPlayPause.Text = "Play / Pause";
btnPlayPause.UseVisualStyleBackColor = true;
btnPlayPause.Click += btnPlayPause_Click;
//
// btnSkip
//
@@ -161,6 +191,7 @@
btnSkip.TabIndex = 1;
btnSkip.Text = "Skip";
btnSkip.UseVisualStyleBackColor = true;
btnSkip.Click += btnSkip_Click;
//
// Main
//
@@ -181,6 +212,8 @@
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)album_art_picture_box).EndInit();
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
groupBox1.ResumeLayout(false);
ResumeLayout(false);
PerformLayout();
@@ -201,5 +234,8 @@
private GroupBox groupBox1;
private Button btnPlayPause;
private Button btnSkip;
private ToolStripStatusLabel statusLabelLeft;
private ToolStripStatusLabel statusLabelCenter;
private ToolStripStatusLabel statusLabelRight;
}
}