I have a button bound to a command, i want for it to be clickable 6 times at most and this works just fine, after the 6th time nothing happens
<Button Command="{Binding MyCommand}">Button Text</Button>
However i'm noticing a pretty major difference with what happened in WPF when i did the same thing. In WPF the command stops working after the 6th time AND the button becomes disabled, in UWP i can still keep hitting the button (it's enabled) but Nothing happen (the command doesn't get executed).
Am i doing Something wrong? Is IsEnabled not set automatically by the ICommand in UWP if it returns false to CanExecute?