【问题标题】:Datetime Hour and Min formatting in xamlxaml 中的日期时间小时和分钟格式
【发布时间】:2013-11-10 10:56:17
【问题描述】:

我想在 XAML 绑定中显示 Hour 和 Min,

例如13:20, 5.30 ....etc

为此,我写了这样的东西:

Text="{Binding BookedFrom,StringFormat='{}{0:HH:mm'}"

但它不起作用

你能给我正确的格式吗?

【问题讨论】:

    标签: c# asp.net wpf xaml windows-phone-7


    【解决方案1】:

    应该是:

    Text="{Binding BookedFrom,StringFormat={}{0:HH:mm}}"
    

    【讨论】:

    • 他说的......你没有关闭你的绑定括号...... :)
    【解决方案2】:

    你可以试试下面的

    Text="{Binding BookedFrom,StringFormat=t}"
    

    Text="{Binding BookedFrom,StringFormat=HH:mm}"
    

    【讨论】:

      猜你喜欢
      • 2021-12-27
      • 2020-03-16
      • 2021-01-23
      • 2012-10-28
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-12-27
      • 2021-01-23
      相关资源
      最近更新 更多