Skip to content

v0.3.0

Latest
Compare
Choose a tag to compare
@zerodev1200 zerodev1200 released this 03 Feb 13:43

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, and Control into observables.
  • Example: You can use button.ClickAsObservable() to treat Click events as Observable<EventArgs>.
dotnet add package R3Utility.WinForms

Full Changelog: v0.2.1...v0.3.0