17 references to Today
PresentationFramework (8)
src\Framework\MS\Internal\AppModel\DeploymentExceptionMapper.cs (1)
258DateTime today = System.DateTime.Today;
src\Framework\System\Windows\Controls\Calendar.cs (2)
101this.SetCurrentValueInternal(DisplayDateProperty, DateTime.Today); 494int i = DateTimeHelper.CompareYearMonth(c.DisplayDateInternal, DateTime.Today);
src\Framework\System\Windows\Controls\CalendarBlackoutDatesCollection.cs (1)
44this.Add(new CalendarDateRange(DateTime.MinValue, DateTime.Today.AddDays(-1)));
src\Framework\System\Windows\Controls\DatePicker.cs (1)
108this.SetCurrentValueInternal(DisplayDateProperty, DateTime.Today);
src\Framework\System\Windows\Controls\Primitives\CalendarItem.cs (3)
141return (Owner != null) ? Owner.DisplayDate : DateTime.Today; 306selectedYear = DateTime.Today; 1108if (DateTimeHelper.CompareDays(dateToAdd.Value, DateTime.Today) == 0)
System.Web (2)
UI\WebControls\basecomparevalidator.cs (1)
116int currentYear = DateTime.Today.Year;
UI\WebControls\Calendar.cs (1)
720return((o == null) ? DateTime.Today : (DateTime)o);
System.Web.Mobile (7)
UI\MobileControls\Adapters\ChtmlCalendarAdapter.cs (2)
167Control.VisibleDate = DateTime.Today; 243DateTime.Compare(visibleDate, DateTime.Today) != 0 &&
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (2)
149Control.VisibleDate = DateTime.Today; 225DateTime.Compare(visibleDate, DateTime.Today) != 0 &&
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (2)
144Control.VisibleDate = DateTime.Today; 210DateTime.Compare(visibleDate, DateTime.Today) != 0 &&
UI\MobileControls\Design\CalendarDataBindingHandler.cs (1)
32calendar.SelectedDate = DateTime.Today;