DatePickerFlyout.MonthFormat 属性

定义

获取或设置月份值的显示格式。

public:
 property Platform::String ^ MonthFormat { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring MonthFormat();

void MonthFormat(winrt::hstring value);
public string MonthFormat { get; set; }
var string = datePickerFlyout.monthFormat;
datePickerFlyout.monthFormat = string;
Public Property MonthFormat As String
<DatePickerFlyout MonthFormat="formatString"/>

属性值

String

Platform::String

winrt::hstring

月份值的显示格式。

注解

通过设置 MonthFormat 属性更改月份值的格式。

月值的字符串内容由 DateTimeFormatter 创建。 可以通过提供格式模板或格式模式的字符串来通知 DateTimeFormatter 如何设置日期值的格式。 下表列出了日值的常见模板和模式。

格式模式格式模板
'{month.integer} |{month.integer (n) } '“month.numeric”
'{month.full} |{month.abbreviated} |{month.abbreviated (n) }''month |month.full |month.abbreviated'

在某些情况下,使用格式模式可以更精确地控制格式设置。 例如,可以使用格式模式指定月份选取器始终显示 2 位数字,包括在需要时的前导 0。 还可以组合多种格式模式。 例如,可以组合 {month.integer}{month.abbreviated} 格式,使月份选取器显示月份编号和名称,如下所示: 12 月 12 日。有关详细信息,请参阅示例部分。

有关格式模板和格式模式的完整列表,请参阅 DateTimeFormatter 类文档的“备注”部分。

注意

如果日期选取器可能显示在较小的区域中,例如添加星期几的完整字符串值,则应避免某些日期格式。 这些字符串可能很长,如果 DatePicker 的宽度被迫较小,则可能会被剪裁。

适用于

另请参阅