Skip to content

Commit

Permalink
fixed #717
Browse files Browse the repository at this point in the history
  • Loading branch information
NaBian committed Mar 28, 2021
1 parent ad32fc8 commit 7cc4640
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Shared/HandyControl_Shared/Controls/SideMenu/SideMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ private void SideMenuItemSelected(object sender, RoutedEventArgs e)
}
_isItemSelected = false;
}

if (!item.HasItems)
{
RaiseEvent(new FunctionEventArgs<object>(SelectionChangedEvent, this)
{
Info = e.OriginalSource
});
}
}
}
}
Expand Down

0 comments on commit 7cc4640

Please sign in to comment.