How can I format a textbox number to curreny with 2 decimal places?
See the question and my original answer on StackOverflowYou can use function binding, like this:
<Window xmlns:sys="using:System" ...>
...
<TextBlock Text="{x:Bind sys:String.Format('{0:C2}', ViewModel.Premium)}" />
...
</Window>
PS: can't be TwoWay in the case since it's now a computed value