无法在Combobox上格式化Timespan

时间:2017-04-25 18:43:32

标签: c# wpf

我有ComboBox ItemsSourceList<TimeSpan>。我尝试设置ItemStringFormat属性,以便将时间格式化为&#34; 13:25&#34;而不是&#34; 13:25:00&#34;但是,我得到的只是空物品。

我试过

<ComboBox ItemsSource="{Binding MyCollection}" ItemStringFormat="hh\\:mm"/>

我也试过

ItemStringFormat="hh:mm"

1 个答案:

答案 0 :(得分:2)

这是您正在寻找的格式:

<ComboBox ItemsSource="{Binding MyCollection}"
          ItemStringFormat="{}{0:hh}:{0:mm}" />