The binding works great, but as soon as I bind to to an field of type int, the field no longer gets alignet to the right?
<TextBlock
TextAlignment="Right"
Width="50"
Text="{Binding SomeIntField}">
</TextBlock>
The binding works great, but as soon as I bind to to an field of type int, the field no longer gets alignet to the right?
<TextBlock
TextAlignment="Right"
Width="50"
Text="{Binding SomeIntField}">
</TextBlock>
yes, as soon as I use test="10" it gets right-aligned correctly. thats why I suppose it has to be something with the field type int?
what other code is needed? I thought this would be the minmal code to reproduce the behaviour.