设置属性:
Format=Custom
加载事件:ValueChanged
private void dtpStart_ValueChanged(object sender, EventArgs e)
{//日期默认为空
this.dtpStart.CustomFormat = null;
}
在_load事件中:
this.dtpStart.Format = DateTimePickerFormat.Custom;
this.dtpStart.CustomFormat = " ";//中间要有空格
版权声明:本文为博主原创文章,未经博主允许不得转载。