我正在使用Telerik的开源RadListView中的UI for UWP在UWP应用中显示分组数据。我正在按日期对数据进行分组,并且想要将显示的显示时间从DateTime(例如:17/10/2018 12:00:00 AM)更改为仅显示日期部分。
通过GroupDescriptors
完成分组。
<!-- Grouping -->
<telerikData:RadListView.GroupDescriptors >
<telerikCore:PropertyGroupDescriptor PropertyName="AttendanceDate"
DisplayContent="Attendance Date" />
</telerikData:RadListView.GroupDescriptors>
我正在使用一个PropertyGroupDescriptor
属性,我希望该属性允许一个StringFormat或对该属性进行其他操作,但是我找不到它的任何文档,只能使用它似乎没有任何改变。
如何在Telerik的RadListView中自定义显示的组标题值?