1 write to _dropDownButton
PresentationFramework (1)
System\Windows\Controls\DatePicker.cs (1)
694
_dropDownButton
= GetTemplateChild(ElementButton) as Button;
11 references to _dropDownButton
PresentationFramework (11)
System\Windows\Controls\DatePicker.cs (11)
664
if (
_dropDownButton
!= null)
666
_dropDownButton
.Click -= DropDownButton_Click;
667
_dropDownButton
.RemoveHandler(MouseLeaveEvent, new MouseEventHandler(DropDownButton_MouseLeave));
695
if (
_dropDownButton
!= null)
697
_dropDownButton
.Click += DropDownButton_Click;
698
_dropDownButton
.AddHandler(MouseLeaveEvent, new MouseEventHandler(DropDownButton_MouseLeave), true);
702
if (
_dropDownButton
.Content == null)
704
_dropDownButton
.Content = SR.DatePicker_DropDownButtonName;
896
if (this.
_dropDownButton
!= null)
898
if (this.
_dropDownButton
.InputHitTest(e.GetPosition(this.
_dropDownButton
)) != null)