Insufferable word wrap in Visual Studio XAML editor - is there any relief for 2010?

Posted by DanM on Stack Overflow See other posts from Stack Overflow or by DanM
Published on 2010-01-08T18:53:19Z Indexed on 2010/05/05 20:58 UTC
Read the original article Hit count: 411

Just curious if the XAML editor is any better at auto-formatting and wrapping attributes in Visual Studio 2010.

Here's how the editor auto wraps attributes in VS 2008:

<StackPanel Grid.Row="0" Grid.ColumnSpan="3">
    <StackPanel Orientation="Horizontal">
        <TextBlock VerticalAlignment="Center" FontWeight="Bold"
Text="Current User:" />
        <ComboBox x:Name="_usersComboBox" Margin="5,0,0,0" Width="200"
ItemsSource="{Binding Users}" SelectedValuePath="Name"
SelectedValue="System Administration">
            <ComboBox.ItemTemplate>
                <DataTemplate>

Here's how I'd like the editor to auto wrap attributes:

<StackPanel Grid.Row="0" Grid.ColumnSpan="3">
    <StackPanel Orientation="Horizontal">
        <TextBlock VerticalAlignment="Center" FontWeight="Bold"
            Text="Current User:" />
        <ComboBox x:Name="_usersComboBox" Margin="5,0,0,0" Width="200"
            ItemsSource="{Binding Users}" SelectedValuePath="Name"
            SelectedValue="System Administration">
            <ComboBox.ItemTemplate>
                <DataTemplate>

Does VS 2010 grant my wish?

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about visual-studio-2010