Caliburn.Micro.Validation icon indicating copy to clipboard operation
Caliburn.Micro.Validation copied to clipboard

Small extension for Caliburn.Micro which enables fluent builder style validation rules

Results 7 Caliburn.Micro.Validation issues
Sort by recently updated
recently updated
newest added

Seems you've made a typo there. You wrote ``` public class PaymentEditorViewModel() : ValidatingScreen ``` and it shouldn't contain the parentheses.

Hello, Can you please give us a simple demo app on which you've implemented this so I can better understand this one, Even one more project is available forked from...

Could you provide an example how to use it in a view (for example using a Textbox)? Would I need to overwrite the Validation.ErrorTemplate in order to show the error...

A manual call to Validate doesn't cause my bound controls validation errors to update.

Some validation rules require async operations such as contacting a web service or database. Please add support for async validation.

Please make a NuGet package for this project.

Is possibile to scan the [MaxLength] and [Require] attribute from object and build validation rule? ``` csharp protected void AutoBuildValidationRulesForObject(T obj, string variableName) { foreach (var field in typeof(T).GetProperties()) {...