I have a ListView with multiple TextBlocks in it. Is it possible to have something such as this?
<TextBlock Name="SonstSchnitt" Text="{Binding testsPercent} + %"/>
I have a ListView with multiple TextBlocks in it. Is it possible to have something such as this?
<TextBlock Name="SonstSchnitt" Text="{Binding testsPercent} + %"/>
You can use Run
inside the TextBlock
to achieve this:
<TextBlock>
<Run Text="{Binding testsPercent}" /> %
</TextBlock>