You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
breaking change: Make Bind use non-generic IViewFor (#3676)
<!-- Please be sure to read the
[Contribute](https://github.com/reactiveui/reactiveui#contribute)
section of the README -->
**What kind of change does this PR introduce?**
<!-- Bug fix, feature, docs update, ... -->
Fix for #3644
**What is the current behavior?**
<!-- You can also link to an open issue here. -->
BindCommand requires a view inherited from `IViewFor<TViewModel>`
ReactiveUserControl inherits `IViewFor<TViewModel>` which requires
Generics which WinForms does not work well with.
**What is the new behavior?**
<!-- If this is a feature change -->
Add BindCommandNonGeneric this is to avoid the request of not changing
the existing code, therefore adding to the available options.
NOTE: Bind only requires `IViewFor` and `IViewFor<TViewModel>` inherits
`IViewFor` therefore would still be an API change if BindCommand were
relaxed to IViewFor in the same way as Bind, but perhaps the best route.
add ReactiveUserControlNonGeneric for WinForms - inherits `IViewFor`
**What might this PR break?**
Non due to new functions
**Please check if the PR fulfills these requirements**
- [ ] Tests for the changes have been added (for bug fixes / features)
- [ ] Docs have been added / updated (for bug fixes / features)
**Other information**:
public class ReactiveUserControl<TViewModel> : System.Windows.Forms.UserControl, ReactiveUI.IActivatableView, ReactiveUI.IViewFor, ReactiveUI.IViewFor<TViewModel>
public class ReactiveUserControl<TViewModel> : System.Windows.Forms.UserControl, ReactiveUI.IActivatableView, ReactiveUI.IViewFor, ReactiveUI.IViewFor<TViewModel>
public class ReactiveUserControl<TViewModel> : System.Windows.Forms.UserControl, ReactiveUI.IActivatableView, ReactiveUI.IViewFor, ReactiveUI.IViewFor<TViewModel>
public class ReactiveUserControl<TViewModel> : System.Windows.Forms.UserControl, ReactiveUI.IActivatableView, ReactiveUI.IViewFor, ReactiveUI.IViewFor<TViewModel>
0 commit comments