I have a FlowLayoutPanel in which i add some controls, Here are my properties
FlowLayoutPanel.AutoScroll = true;
FlowLayoutPanel.FlowDirection = FlowDirection.TopDown;
FlowLayoutPanel.WrapContents = false;
Now i want only the vertical scrollbar to be visible regardless of the size of the controls being added to the panel so i tried many solutions present here at stackoverflow with no luck also i tried
FlowLayoutPanel.HorizontalScroll.Visible = false;
But the Horizontal scroll bar still visible for some reason.
Solutions i have tried
still Not able to Hide Horizontal Scrollbar of FlowLayoutPanel in WinForms Apps