Trigger event when current tab is pressed #16699
Unanswered
FelixCEriksson
asked this question in
Q&A
Replies: 2 comments
-
In MAUI.Blazor you can simply listen to onclick event of anything on screen |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, were you able to find any solution? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am developing a maui shellapp with tabbar as navigation. I want to create a custom action when a tab is pressed. This can be done by adding a Eventhandler to the Navigating property in the AppShell. eg :
public AppShell()
{
InitializeComponent();
Navigating += HandleTabClick;
}
The problem is that if i press the current open tab the Navigating event wont be fired. Is there any way to create a custom action that is triggered when the current open tab is pressed?
Beta Was this translation helpful? Give feedback.
All reactions