I have code :
<Label Width="100">
<Label.Content>
<PriorityBinding>
<Binding Path="CurrentTime" StringFormat="Total: HH:MM:SS" IsAsync="True"/>
</PriorityBinding>
</Label.Content>
</Label>
But it formats the timespan to 12:14:34.3456577.
How should I format the string to not show this part after the dot ?
For
ContentControllikeLabeluse ContentStringFormat Property with the right Custom TimeSpan Format Strings.