We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
need to add a validation callback to be able to check if the input value is compliant
The text was updated successfully, but these errors were encountered:
Hi! You can try the Minimal MVVM framework for MahApps.Metro:
<minimal:DialogCoordinatorService x:Name="DialogCoordinatorService"/> <minimal:MetroDialogService DialogCoordinator="{Binding Source={x:Reference DialogCoordinatorService}}" MessageBoxButtonLocalizer="{StaticResource MessageBoxButtonLocalizer}" DialogContentMargin="*" DialogContentWidth="9*" ValidatesOnDataErrors="True" ValidatesOnNotifyDataErrors="True"/>
Validation can be achieved via the ValidatesOnDataErrors and/or ValidatesOnNotifyDataErrors properties of the MetroDialogService for custom dialogs.
ValidatesOnDataErrors
ValidatesOnNotifyDataErrors
Sample that demonstrates validation using ValidatesOnDataErrors.
Sorry, something went wrong.
No branches or pull requests
Describe the feature
need to add a validation callback to be able to check if the input value is compliant
The text was updated successfully, but these errors were encountered: