Bill Hally

Results 4 comments of Bill Hally

@abelbraaksma wrote: > 5. Allow no-op cast on collections for UoM and: > I think only (5) is slightly problematic from an implementation standpoint. I may be misunderstanding something, but...

@mattstermiller You need to replace the use of `System.Windows.Interactivity` with [Microsoft.Xaml.Behaviors.Wpf](https://www.nuget.org/packages/Microsoft.Xaml.Behaviors.Wpf). See https://devblogs.microsoft.com/dotnet/open-sourcing-xaml-behaviors-for-wpf for details.

```fsharp type Goose = Goose of int type Cardinal = Cardinal of int type Mallard = Mallard of int type Bird = Goose of Goose | Cardinal of Cardinal |...