XamlStyler icon indicating copy to clipboard operation
XamlStyler copied to clipboard

Avoid linebreaks in text content.

Open Montago opened this issue 2 years ago • 0 comments

I've just looked through the settings for XAML Styler again and didn't find what i was looking for.

The Issue:

<Label Grid.Row="0" Grid.Column="0" Margin="2">Empire</Label>

will be formatted to this:

<Label Grid.Row="0"
           Grid.Column="0"
           Margin="2">
        Empire
    </Label>

But I would like the content to be fitted between the ><:

<Label Grid.Row="0"
           Grid.Column="0"
           Margin="2">Empire</Label>

If this is already possible I just dont know how to do it :-/

Montago avatar Feb 04 '22 10:02 Montago