BaconographyW8.Common.SettingsFlyout.OnInputPaneHiding C# (CSharp) Method

OnInputPaneHiding() private method

private OnInputPaneHiding ( Windows sender, Windows args ) : void
sender Windows
args Windows
return void
        private void OnInputPaneHiding(Windows.UI.ViewManagement.InputPane sender, Windows.UI.ViewManagement.InputPaneVisibilityEventArgs args)
        {
            // if the ihm occluded something and we had to move, we need to adjust back
            if (_ihmFocusMoved)
            {
                _hostPopup.VerticalOffset += _ihmOccludeHeight; // ensure defaults back to normal
                _ihmFocusMoved = false;
            }
        }