Ho un controllo di flusso in Winforms, ho impostato la direzione del flusso su TopDown ma continua ad aggiungere controlli da sinistra a destra, lo scorrimento automatico è anche impostato su true.controllo flusso continuo continua ad aggiungere controllo nella direzione sbagliata in winform
flowLayoutPanel1.Controls.Clear();
Label labelInput = new Label();
ListBox listBoxNewInput = new ListBox();
//Initialize label's property
labelInput.Text = " #" + Convert.ToInt32(sequence);
labelInput.AutoSize = true;
//Initialize textBoxes Property
listBoxNewInput.HorizontalScrollbar = false;
listBoxNewInput.Items.Add(efforts);
//Add the newly created text box to the list of input text boxes
inputTextBoxesList.Add(listBoxNewInput);
//Add the labels and text box to the form
flowLayoutPanel1.FlowDirection = FlowDirection.TopDown;
flowLayoutPanel1.Controls.Add(labelInput);
flowLayoutPanel1.FlowDirection = FlowDirection.TopDown;
flowLayoutPanel1.Controls.Add(listBoxNewInput);
quello che voglio è che se essi non montare verticalmente dovrebbe fare una barra di scorrimento, ma li mette sulla destra – PUG