📌  相关文章
📜  如何在C#中的DateTimePicker中设置向上和向下按钮?

📅  最后修改于: 2021-05-29 23:43:19             🧑  作者: Mango

在Windows窗体中,DateTimePicker控件用于选择和显示窗体中具有特定格式的日期/时间。在DateTimePicker控件中,允许您在ShowTimePicker中设置旋转按钮控件或上下控件,以使用ShowUpDown属性调整日期/时间。如果此属性的值设置为true,则DateTimePicker控件中将显示一个上下控件,否则为false。您可以通过两种不同的方式设置此属性:

1.设计时:这是在DateTimePicker中设置上下控件的最简单方法,如以下步骤所示:

  • 第1步:创建一个Windows窗体,如下图所示:

    Visual Studio->文件->新建->项目-> WindowsFormApp

  • 步骤2:接下来,将DateTimePicker控件从工具箱拖放到窗体,如下图所示:

  • 步骤3:拖放之后,您将转到DateTimePicker的属性,并在DateTimePicker中设置一个上下控件,如下图所示:

    输出:

2.运行时:比上述方法有些棘手。在此方法中,可以借助给定的语法以编程方式在DateTimePicker控件中设置一个上下控件:

public bool ShowUpDown { get; set; }

此属性的值是System.Boolean类型,为true或false。此属性的默认值为false。以下步骤显示如何在DateTimePicker中动态设置一个上下控件:

  • 步骤1:使用DateTimePicker类提供的DateTimePicker()构造函数创建DateTimePicker。
    // Creating a DateTimePicker
    DateTimePicker dt = new DateTimePicker();
    
  • 步骤2:创建DateTimePicker之后,设置DateTimePicker类提供的DateTimePicker的ShowUpDown属性。
    // Setting the ShowUpDown property
    dt.ShowUpDown = true;
    
  • 步骤3:最后,使用以下语句将此DateTimePicker控件添加到表单中:
    // Adding this control to the form
    this.Controls.Add(dt);
    

例子:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
  
namespace WindowsFormsApp49 {
  
public partial class Form1 : Form {
  
    public Form1()
    {
        InitializeComponent();
    }
  
    private void Form1_Load(object sender, EventArgs e)
    {
        // Creating and setting the 
        // properties of the Label
        Label lab = new Label();
        lab.Location = new Point(183, 162);
        lab.Size = new Size(172, 20);
        lab.Text = "Select Time";
        lab.Font = new Font("Comic Sans MS", 12);
  
        // Adding this control to the form
        this.Controls.Add(lab);
  
        // Creating and setting the 
        // properties of the DateTimePicker
        DateTimePicker dt = new DateTimePicker();
        dt.Location = new Point(360, 162);
        dt.Size = new Size(292, 26);
        dt.MaxDate = new DateTime(2500, 12, 20);
        dt.MinDate = new DateTime(1753, 1, 1);
        dt.Format = DateTimePickerFormat.Time;
        dt.Name = "MyPicker";
        dt.Font = new Font("Comic Sans MS", 12);
        dt.ShowUpDown = true;
  
        // Adding this control
        // to the form
        this.Controls.Add(dt);
    }
}
}

输出: