I have several forms with navigation buttons and when I select a button the selection will remain when the form changes.
This is just an example of code. I'm programming in C# with WPF. I have uploaded 3 images to improve my explanation: https://i.stack.imgur.com/kNERw.jpg .
private void CheckClick(object sender, RoutedEventArgs e)
{
formManager.showABATE();
}
I have a pages with global buttons (image 1). When I touch the Button
, which is handled by CheckClick
(Image 2), the next page is properly loaded (formManager.showABATE
). But In that second page (image 3), the global Button
still appears selected (focus, I guess).