tags:

views:

340

answers:

1

Hello,

Is there a way to change the order of the controls inside a StackPanel at runtime?

Many thanks,
Paulo

+3  A: 
stackPanel1.Children.Remove(item);
stackPanel1.Children.Insert(newIndex, item);
Thomas Levesque