-1

您好,我正在尝试创建一个函数,该函数将在给定表单上的给定位置放置一个日历,并在字符串中返回选定的日期。

这是我到目前为止所得到的:

public static string ShowCalendar(Point locatieCalender, Form F1)
    {
        MonthCalendar calender = new MonthCalendar();
        calender.Location = locatieCalender;
        calender.Show();
        calender.Visible = true;
        calender.BringToFront();
        calender.Parent = F1;
        string date = calender.SelectionRange.Start.ToShortDateString();
        DateTime dateValue = DateTime.Parse(date);
        string dateForTextbox = dateValue.ToString("dd-MM-yyyy");

        //calender.Hide();
        return dateForTextbox;

    }

函数调用如下所示:

Point calenderLocatie = new Point(405, 69);
        string dateForTextbox = HelpFunction.ShowCalendar(calenderLocatie, this);
        txtPeriode_Tot.Text = dateForTextbox;

日历显示在表单上,​​但没有返回字符串。我尝试了一个事件处理程序,但由于静态属性,这不起作用。

在此先感谢您的帮助。

4

2 回答 2

0

你需要一个处理程序。从方法中删除 static 关键字。

于 2013-08-28T19:39:26.970 回答
0

您的ShowCalendar方法不能以这种方式返回字符串,我知道您想显示日历,让用户选择某个日期并在此之后隐藏它,将所选日期存储在字符串中,这应该是:

public static void ShowCalendar(Point locatieCalender, Form F1, Control textBox)
{
    MonthCalendar calender = new MonthCalendar();
    calender.Location = locatieCalender;
    calender.Parent = F1;
    //Register this event handler to assign the selected date accordingly to your textBox
    calendar.DateSelected += (s,e) => {
      textBox.Text = e.Start.ToString("dd-MM-yyyy");
      (s as MonthCalendar).Parent = null;
      (s as MonthCalendar).Dispose();          
    };
    calender.Show();
    calender.BringToFront();
}
//Use it
Point calenderLocatie = new Point(405, 69);
HelpFunction.ShowCalendar(calenderLocatie, this, txtPeriode_Tot);
于 2013-08-28T20:01:47.007 回答