我想用日期时间选择器制定议程,但我遇到了一些麻烦。 所以我有一个日期时间选择器和2个按钮,1个按钮用于插入字符串(Inputbox),另一个用于显示字符串(messagebox)。但是我希望在所选日期之前显示字符串。例如,如果我选择2015年5月15日,我想在该日期插入一个字符串,然后当我想显示字符串时,它只显示日期选择日期是否在5/15/2015。
谢谢,
public partial class Form1 : Form
{
string inputdate { get; set; }
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
inputdate = Interaction.InputBox("Voeg plan toe");
}
private void button2_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e){
}
private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
MessageBox.Show("Selected Date: " + dateTimePicker1.Text, "DateTimePicker", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
让我们说我选择日期5/15/2015我想通过按钮(输入框)插入字符串示例:“约翰的生日”。使用我的button2(messagebox)我想查看我计划2015年5月15日的计划,以便显示“John的生日”。
答案 0 :(得分:0)
dateTimePicker1.Value.ToString();
这应该有所帮助。由于DateTimePicker使用值而不是文本获取其值并将其转换为消息框的字符串。 希望它有所帮助