dateTimePicker的使用,时间控件



  •   至 


  •  



    dateTimePicker怎么取值?

    关键看你需要取什么值,比如要取一个年月日的日期值:
    dateTimePicker1.Value.Date.ToLongDateString();
    仅仅取一个年、月、日的值:
    dateTimePicker1.Value.Year.ToString();
    dateTimePicker1.Value.Month.ToString();
    dateTimePicker1.Value.Day.ToString();
    甚至小时、分、秒都可以,将Value后的属性year修改为.TimeOfDay.Hours等

    效果图:


    转载于:https://www.cnblogs.com/dachuang/p/4225518.html

    你可能感兴趣的:(dateTimePicker的使用,时间控件)