RemoveFixed() public method

Remove the fixed pressed mode.
public RemoveFixed ( ) : void
return void
        private void ActionFinishedMediumSmall(object sender, EventArgs e)
        {
            // Remove any popups that result from an action occuring
            _ribbon?.ActionOccured();

            // Remove the fixed pressed appearance
            _viewMediumSmallController.RemoveFixed();
        }
コード例 #2
0
        private void ActionFinishedLarge(object sender, EventArgs e)
        {
            // Remove any popups that result from an action occuring
            if (_ribbon != null)
            {
                _ribbon.ActionOccured();
            }

            // Remove the fixed pressed appearance
            _viewLargeController.RemoveFixed();
        }