清除c#winfoms中的DateTimePicker控件

时间:2016-11-02 10:46:56

标签: c# winforms

当我点击清除按钮时我想清除DateTimePicker控件值,但我不能用简单的双qoutes来做,所以请帮帮我

tbAddress.Text = "";
        dtpBirth.Value = "";
        cBoxGender.SelectedIndex = -1;

3 个答案:

答案 0 :(得分:2)

这应该可以解决问题

dtpBirth.CustomFormat = " ";
dtpBirth.Format = DateTimePickerFormat.Custom;

它将清除输入框。

答案 1 :(得分:-1)

INSERT INTO questions (Type , Question , Answer) -- columns VALUES ('$type' , '$question' , '$answer') -- values 来自DateTimePicker.Value,而不是DateTime

String

答案 2 :(得分:-2)

你可以这样做:

var DivItem = document.createElement("div");
    var span = document.createElement("span");
    span.innerHTML =Name + "<br>" + Description;
    span.className = "TooltipText";

    DivItem.appendChild(span);
    DivItem.className = "Tooltip";

    MainDiv.appendChild(DivItem);