0

I have a ListView with multiple TextBlocks in it. Is it possible to have something such as this?

<TextBlock Name="SonstSchnitt" Text="{Binding testsPercent} + %"/>
Romasz
  • 29,662
  • 13
  • 79
  • 154
David Ullmer
  • 167
  • 1
  • 10

1 Answers1

2

You can use Run inside the TextBlock to achieve this:

<TextBlock>
    <Run Text="{Binding testsPercent}" /> %
</TextBlock>
Tóth Tibor
  • 1,526
  • 12
  • 21