MvvmValidation
MvvmValidation copied to clipboard
Lightweight library that helps reduce boilerplate when implementing validation in XAML MVVM applications
```cs public class ComplexModel { public int Number { get; set; } public string Name { get; set; } public bool IsOK { get; set; } } public class ViewModel...
I used a shadowwindow style in my project,but the errorteplate doesn't dispaly.
I'm trying to follow you sample applying in it to a Xamarin.Forms app but, in the Xaml code I havent been able to find this property: ValidatesOnDataErrors=True it just doesnt...
Hi I am new in Android development. I have create xamarin android application in visual studio. i am using MVVMValidation v3.1 with MVVMCROSS v6.1 .Validation works in debug mode but...
Hello, I have a `ListView` that binding to a `ObservableCollection`, it display each `string` by a `TextBox` via its `ItemTemplate`, how can I validation each `TextBox` ?
Hi, at first, thanks for this great library! But if your UserRegistrationService (In your example) takes, like 1, 2 or more seconds to run, the form is in an false...
See [this comment](https://github.com/pglazkov/MvvmValidation/issues/15#issuecomment-333606865).
Thank you for your open-source library, which has helped me solve many issues in my project. I use FluentValidation extensively in my work, especially its rules that may be used...