UI Components/Features

• Added BtnVlcPlay WHich toggles between Vlc.Play and VLC.Stop
This commit is contained in:
2026-01-14 10:36:58 +00:00
parent d1d90f17fc
commit a4c51b0af0
3 changed files with 51 additions and 7 deletions

21
AiQ_GUI.Designer.cs generated
View File

@@ -131,6 +131,7 @@ namespace AiQ_GUI
BtnFirewall = new Button();
TabImages = new TabPage();
Video = new TabPage();
BtnPlayVLC = new Button();
VLCVideo = new Label();
NightImgPcbx = new PictureBox();
NightImage = new Label();
@@ -1662,6 +1663,7 @@ namespace AiQ_GUI
// Video
//
Video.BackColor = Color.FromArgb(39, 37, 55);
Video.Controls.Add(BtnPlayVLC);
Video.Controls.Add(VidView);
Video.Controls.Add(VLCVideo);
Video.Controls.Add(NightImgPcbx);
@@ -1675,13 +1677,29 @@ namespace AiQ_GUI
Video.TabIndex = 5;
Video.Text = "Video";
//
// BtnPlayVLC
//
BtnPlayVLC.BackColor = Color.FromArgb(70, 65, 80);
BtnPlayVLC.FlatAppearance.BorderSize = 0;
BtnPlayVLC.FlatStyle = FlatStyle.Flat;
BtnPlayVLC.Font = new Font("Segoe UI Semibold", 10F, FontStyle.Bold);
BtnPlayVLC.ForeColor = SystemColors.Control;
BtnPlayVLC.Location = new Point(286, 536);
BtnPlayVLC.Margin = new Padding(4, 3, 4, 3);
BtnPlayVLC.Name = "BtnPlayVLC";
BtnPlayVLC.Size = new Size(113, 37);
BtnPlayVLC.TabIndex = 239;
BtnPlayVLC.Text = "Play Video";
BtnPlayVLC.UseVisualStyleBackColor = false;
BtnPlayVLC.Click += BtnPlayVLC_Click;
//
// VLCVideo
//
VLCVideo.AutoSize = true;
VLCVideo.BackColor = Color.Transparent;
VLCVideo.Font = new Font("Segoe UI Semibold", 12F, FontStyle.Bold);
VLCVideo.ForeColor = SystemColors.Control;
VLCVideo.Location = new Point(12, 545);
VLCVideo.Location = new Point(12, 555);
VLCVideo.Margin = new Padding(4, 0, 4, 0);
VLCVideo.Name = "VLCVideo";
VLCVideo.Size = new Size(86, 21);
@@ -2129,5 +2147,6 @@ namespace AiQ_GUI
public Label VLCVideo;
public PictureBox NightImgPcbx;
public PictureBox DayImgPcbx;
private Button BtnPlayVLC;
}
}