6

我试图从后天到日期时间最大值,在我的日期时间选择器控件中涂黑日期。

以下是代码:

    <Calendar.BlackoutDates>
        <CalendarDateRange Start="{x:Static System:DateTime.Today}"
 End="{x:Static System:DateTime.MaxValue}" />
    </Calendar.BlackoutDates>

如您所见,上面的代码将从今天开始屏蔽日期,但我希望从明天开始日期。基本上问题是,我怎样才能设置这样的东西:

Start="{x:Static System:DateTime.Today.AddDays(1)}"

能否请你帮忙?

4

1 回答 1

11

您可以为此创建自己的静态属性。

  public static class DateTimeHelper
  {
    public static DateTime Tomorrow
    {
      get { return DateTime.Today.AddDays(1); }
    }
  }

.

  <CalendarDateRange Start="{x:Static app:DateTimeHelper.Tomorrow}"…
于 2013-05-09T13:46:46.380 回答