Add drone state window

This commit is contained in:
2025-05-16 01:27:03 +03:00
parent 7bf2553455
commit e0f3e3db19
5 changed files with 51 additions and 3 deletions

View File

@ -159,6 +159,7 @@
comboBox_Drone_Rotor = new ComboBox();
comboBox_Drone = new ComboBox();
timer_Test = new System.Windows.Forms.Timer(components);
listBox_Drones = new ListBox();
menuStrip_Menu.SuspendLayout();
groupBox_Screen.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBox_2D).BeginInit();
@ -1585,6 +1586,7 @@
//
// panel1
//
panel1.Controls.Add(listBox_Drones);
panel1.Controls.Add(button_Drone_Color);
panel1.Controls.Add(comboBox_Drone_Rotor);
panel1.Dock = DockStyle.Fill;
@ -1627,6 +1629,14 @@
timer_Test.Interval = 10;
timer_Test.Tick += timer_Test_Tick;
//
// listBox_Drones
//
listBox_Drones.FormattingEnabled = true;
listBox_Drones.Location = new Point(3, 45);
listBox_Drones.Name = "listBox_Drones";
listBox_Drones.Size = new Size(188, 214);
listBox_Drones.TabIndex = 3;
//
// Form_Main
//
AutoScaleDimensions = new SizeF(7F, 15F);
@ -1840,5 +1850,6 @@
private Label label56;
private GroupBox groupBox2;
private CheckBox checkBox_Mode_Real;
private ListBox listBox_Drones;
}
}