I am having a button with two events, i.e. 'command' and 'clicked'. But while executing, my 'clicked' event gets fired up followed by 'command' event. I want it in a reverse order. Is there a way to fire up 'command' event first? Any help would be appreciated.
<Button BackgroundColor="Transparent" Text="Sign In" TextColor="{x:Static common:ColorResources.ButtonTextColor}" AbsoluteLayout.LayoutBounds="0, 0, 1, 1" AbsoluteLayout.LayoutFlags="All" Command="{Binding SignInCommand}" Clicked="OnSigninClicked"/>