如何设置DateTimePicker DatePart WPf的格式

时间:2016-10-12 19:07:07

标签: c# wpf

在我的应用程序中,我正在使用Xceed Wpf工具包DateTimePicker控件。我想在该控件中设置Time部分的格式。请查看附图供您参考。在该图像中,我想仅为突出显示的部分设置格式。提前致谢。enter image description here

2 个答案:

答案 0 :(得分:0)

您需要指定格式为Custom。完成后,您可以提供实际的自定义格式字符串,控件将使用该字符串格式化显示日期。这是XAML中的一个简单示例:

<xctk:DateTimePicker Format="Custom"
                     FormatString="MM/dd/yyyy HH:mm"
                     TimeFormat="Custom"
                     TimeFormatString="HH:mm" />

答案 1 :(得分:0)

xml

<wpfTool:DateTimePicker x:Name="beginDateTimePicker"/>  

代码

public void Init() {
        beginDateTimePicker.Format = Xceed.Wpf.Toolkit.DateTimeFormat.Custom;
        beginDateTimePicker.FormatString = "HH:mm  dd.MM.yyyy";
        beginDateTimePicker.Value = DateTime.Now;
    }