Microsoft.Phone.Controls.ListPicker.OnManipulationCompleted C# (CSharp) Method

OnManipulationCompleted() protected method

Called when the ManipulationCompleted event occurs.
protected OnManipulationCompleted ( System.Windows.Input.ManipulationCompletedEventArgs e ) : void
e System.Windows.Input.ManipulationCompletedEventArgs Event data for the event.
return void
        protected override void OnManipulationCompleted(ManipulationCompletedEventArgs e)
        {
            if (null == e)
            {
                throw new ArgumentNullException("e");
            }

            base.OnManipulationCompleted(e);

            if (!IsEnabled)
            {
                return;
            }

            if (ListPickerMode == ListPickerMode.Normal)
            {
                // Style box to look unselected
                IsHighlighted = false;
            }
        }