You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are also formatter problems:
It formats the string <Run Text="123"/><Run Text="456"/> into separate lines which results in extra space between runs in output.
It would also be cool to have hyperlink.
There are also formatter problems:
It formats the string
<Run Text="123"/><Run Text="456"/>
into separate lines which results in extra space between runs in output.It would also be cool to have hyperlink.
Originally posted by @strangerinla in #417 (reply in thread)
How to repeat this:
Create TextBlock wtih several
<Run>
elements in single lineBuild and run the project - TextBlock displays concatenation of Runs' text properties. No space between texts.
Execute "Format Document" command on axaml file edited in step 1 -
<Run>
controls split in different linesBuild and run the project - TextBlock content differs from step 2: text properties are separated by space
The key problem here is the formatter logic. Row
<Run/><Run/>
should not be formatted as<Run/>\n<Run/>
as it produces different output result.The text was updated successfully, but these errors were encountered: