R3Utility v0.3.0 Release
🚨 Breaking Changes
ObservableCollectionsExtensions
Moved
ObservableCollectionsExtensions
has been moved to a separate package: R3Utility.ObservableCollections
.
If you were using ObserveElementProperty
, you need to install the new package and update your using
directive.
dotnet add package R3Utility.ObservableCollections
using R3Utility.ObservableCollections;
✨ New Features
WinForms UI Events as Observables (R3Utility.WinForms) 🖥️
- Added extension methods to convert UI events of
TextBox
,Button
,CheckBox
,ComboBox
, andControl
into observables. - Example: You can use
button.ClickAsObservable()
to treatClick
events asObservable<EventArgs>
.
dotnet add package R3Utility.WinForms
Full Changelog: v0.2.1...v0.3.0