1 write to _nextButton
PresentationFramework (1)
src\Framework\System\Windows\Controls\Primitives\CalendarItem.cs (1)
175_nextButton = GetTemplateChild(ElementNextButton) as Button;
14 references to _nextButton
PresentationFramework (14)
src\Framework\System\Windows\Controls\Primitives\CalendarItem.cs (14)
125return this._nextButton; 162if (this._nextButton != null) 164this._nextButton.Click -= new RoutedEventHandler(NextButton_Click); 198if (this._nextButton != null) 202if (this._nextButton.Content == null) 204this._nextButton.Content = SR.Get(SRID.Calendar_NextButtonName); 207this._nextButton.Click += new RoutedEventHandler(NextButton_Click); 1212if (this.Owner != null && _nextButton != null) 1219_nextButton.IsEnabled = false; 1226_nextButton.IsEnabled = (DateTimeHelper.CompareDays(this.Owner.DisplayDateEndInternal, firstDayOfNextMonth) > -1); 1339if (this.Owner != null && _nextButton != null) 1341_nextButton.IsEnabled = (this.Owner.DisplayDateEndInternal.Year != DisplayDate.Year); 1368if (this.Owner != null && _nextButton != null) 1370_nextButton.IsEnabled = (this.Owner.DisplayDateEndInternal.Year > decadeEnd);