views:

16

answers:

0

Is there a way to sort XAML tags in Visual Studio 2010? For an example

<Button Content="OK" Height="23" Margin="0,0,0,0" />
<Button Margin="0,30,0,0" Content="Cancel" Height="23" />

may be reordered to

<Button Content="OK" Height="23" Margin="0,0,0,0" />
<Button Content="Cancel" Height="23" Margin="0,30,0,0" />