C#/WPF

[WPF] 소숫점 둘째 짜리까지 표시하기

kjun.kr 2021. 12. 1. 10:27
728x90
<TextBlock
    Grid.Row="2"
    Grid.Column="2"
    Margin="5"
    Foreground="#61647a">
    <Run Text="{Binding Width, StringFormat=N2}" />
    <Run Text="×" />
    <Run Text="{Binding Height, StringFormat=N2}" />
</TextBlock>
728x90