Is there any way that we can insert a new control in a panel on previous index as we can do with the List collection like this:
List.Insert(2,Value);
I am working with C# winforms.
I want to do this because I want to access the controls in a specific order, like this:
Control c = panelThumbnail.GetNextControl(control, true);
It gives the controls in order of their indexes. Is there any other way to solve the problem?