One of the new features in 3.5 SP1 is stringformat. The usage is pretty simple. So following are simple snippets showing its use

<TextBox Text="{Binding Path=Double, StringFormat=F3}"/>

<TextBox Text="{Binding Path=Double, StringFormat=Amount: {0:C}}"/>

<TextBox Text="{Binding Path=Double, StringFormat=Amount: \{0:C\}}"/>

<TextBox>

  <TextBox.Text>

    <Binding Path="Double" StringFormat="{}{0:C}"/>

  </TextBox.Text>

</TextBox>

WPF 3.5 SP1 feature: StringFormat

 

<TextBox>

  <TextBox.Text>

    <MultiBinding StringFormat="{}{0:F2} = {1:D}">

      <Binding Path="Double" />

      <Binding Path="Date"/>

    </MultiBinding>

  </TextBox.Text>

</TextBox>

<TextBox>

  <TextBox.Text>

    <Binding Path="Date" StringFormat="{}{0:MM/dd/yyyy}"/>

  </TextBox.Text>

</TextBox>

WPF 3.5 SP1 feature: StringFormat

<ListBox Background="Beige" ItemStringFormat="F3">

  <sys:Double>1.11122</sys:Double>

  <sys:Double>2.11345</sys:Double>

</ListBox>

<GroupBox Background="AliceBlue" Content="{Binding Path=Double}"ContentStringFormat="F4"

          Header="{Binding Path=Double}" HeaderStringFormat="F5"/>

<Label Content="{Binding Path=Double}" ContentStringFormat="{}{0:E2}"/>

<GridView>

  <GridViewColumn Header="Date"

           DisplayMemberBinding="{Binding XPath=Date, StringFormat=D}" />

WPF 3.5 SP1 feature: StringFormat

 This feature makes life a lot more easier when it comes to formatting.. So have fun with it.

博文出处

相关文章:

  • 2022-02-09
  • 2021-06-07
  • 2021-08-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-28
  • 2021-11-18
  • 2022-01-14
  • 2022-01-15
  • 2021-09-20
  • 2021-08-16
  • 2021-05-29
相关资源
相似解决方案