2017-04-25 53 views
0

我有一個ComboBox其中ItemsSourceList<TimeSpan>。我試圖設置ItemStringFormat屬性,以便將時間格式設置爲「13:25」而不是「13:25:00」,但是,我得到的只是空項目。無法在Combobox上格式化Timespan

我試圖

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

我也試過

ItemStringFormat="hh:mm" 

回答

2

這是你正在尋找的格式:

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