我有ComboBox
ItemsSource
是List<TimeSpan>
。我尝试设置ItemStringFormat
属性,以便将时间格式化为&#34; 13:25&#34;而不是&#34; 13:25:00&#34;但是,我得到的只是空物品。
我试过
<ComboBox ItemsSource="{Binding MyCollection}" ItemStringFormat="hh\\:mm"/>
我也试过
ItemStringFormat="hh:mm"
答案 0 :(得分:2)
这是您正在寻找的格式:
<ComboBox ItemsSource="{Binding MyCollection}"
ItemStringFormat="{}{0:hh}:{0:mm}" />