Skip to content

Commit

Permalink
Added virtual accessor to HamburgerMenuButton.UpdateCheckedState method
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolamas committed Jul 22, 2016
1 parent 37796f9 commit cc2f28a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ protected override void OnToggle()
/// </summary>
/// <param name="sourcePageType">The data type of the source page.</param>
/// <param name="parameter">Any Parameter object passed to the target page for the navigation.</param>
public void UpdateCheckedState(Type sourcePageType, object parameter)
public virtual void UpdateCheckedState(Type sourcePageType, object parameter)
{
this.IsChecked = NavigationSourcePageType == sourcePageType && NavigationParameter == parameter;
}
Expand Down

0 comments on commit cc2f28a

Please sign in to comment.