views:

7

answers:

1

I need a tool for rapid code generation from

<DockPanel DockPanel.Dock="Top"><TextBlock Text=" " /><TextBox Style="{StaticResource TextBoxIsReadOnly}" Text="{Binding title}" Foreground="Chocolate" DockPanel.Dock="Left"/></DockPanel>

in:

<DockPanel DockPanel.Dock="Top">
    <TextBlock Text=": " />
    <TextBox Style="{StaticResource TextBoxIsReadOnly}" Text="{Binding title}" Foreground="Chocolate"   DockPanel.Dock="Left"/>
</DockPanel>
+1  A: 

Select the text in Visual Studio XML editor and then CTRL+K+F to format the code.

Darin Dimitrov
That's fine, but where you can read about the usefulness of VS2010
simply denis