绑定时使用 Only Time 将 dateTime 转换为 Time

convert dateTime into Time using Only Time while binnding

我有一个绑定值,它是 DateTime 数据类型,我试图将它转换为仅时间,它在这种情况下 Text="{Binding AppointmentDate.Value.ToString("H:mm") }" 在标签中,但这不起作用并给出错误,我如何转换它并仅使用时间而不触摸 c# 文件?

这样更改时间格式。

<Label Text="{Binding AppointmentDate, StringFormat='{0:MMMM dd, yyyy}'}"></Label>
<Label Text="{Binding AppointmentDate, StringFormat='{}{0:hh\:mm}'}"></Label>