I have two properties, Related_Id and PageNumber. I want to bind these two values to a single label.
XAML code
<StackPanel>
<sdk:Label x:Name="RelatedItemIdLabel"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="{Binding CreateMessage.RelatedId}" />
</StackPanel>
current output: Related_Id
Desired output: Related_Id/ PageNumber
Could anyone help me to find a solution..
Thanks..