ReactiveProperty provides MVVM and asynchronous support features under Reactive Extensions. Target frameworks are .NET 6+, .NET Framework 4.7.2 and .NET Standard 2.0.
MIT License
903
stars
101
forks
source link
Validation error doesn't apply to WPF UI when calling `ValidatableReactiveProperty.ForceNotify` #471
using Reactive.Bindings;
using Reactive.Bindings.Schedulers;
using System.Configuration;
using System.Data;
using System.Windows;
namespace WpfApp1;
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
private void Application_Startup(object sender, StartupEventArgs e)
{
ReactivePropertyScheduler.SetDefault(new ReactivePropertyWpfScheduler(Dispatcher));
}
}
Repro steps
Validation errors have occurred, but the TextBoxes are not outlined in red.
Expected behavior