Hello,
Is there a way to change the order of the controls inside a StackPanel at runtime?
Many thanks,
Paulo
Hello,
Is there a way to change the order of the controls inside a StackPanel at runtime?
Many thanks,
Paulo
stackPanel1.Children.Remove(item);
stackPanel1.Children.Insert(newIndex, item);