You can disable a button by setting its IsEnabled property to false. This will gray out the button and prevent user interaction.
XAML:
<Button x:Name="button" IsEnabled="False"/>You can disable a button by setting its IsEnabled property to false. This will gray out the button and prevent user interaction.
XAML:
<Button x:Name="button" IsEnabled="False"/>
Share with