set to work on click for rest api

This commit is contained in:
minster586
2025-08-16 00:47:22 -04:00
parent 030bf87d79
commit 581733b758
2 changed files with 6 additions and 0 deletions

View File

@@ -114,6 +114,7 @@
this.restAPISettingToolStripMenuItem.Name = "restAPISettingToolStripMenuItem"; this.restAPISettingToolStripMenuItem.Name = "restAPISettingToolStripMenuItem";
this.restAPISettingToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.restAPISettingToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.restAPISettingToolStripMenuItem.Text = "Rest API Setting"; this.restAPISettingToolStripMenuItem.Text = "Rest API Setting";
this.restAPISettingToolStripMenuItem.Click += new System.EventHandler(this.restAPISettingToolStripMenuItem_Click);
// //
// profileToolStripMenuItem // profileToolStripMenuItem
// //

View File

@@ -16,5 +16,10 @@ namespace RadioDJViewer
{ {
InitializeComponent(); InitializeComponent();
} }
private void restAPISettingToolStripMenuItem_Click(object sender, EventArgs e)
{
}
} }
} }