Upgrading Uno Toolkit
Upgrading to Uno Toolkit 7.1
Bump to Uno 6.0
Version 7.1 of Uno Toolkit now requires
Uno 6.0
.Switch from
ReturnType
toInputReturnType
The
InputExtensions
helper has been updated to use the built-inInputReturnType
enum (provided by Uno v6+) instead of the legacyReturnType
enum.// No code changes required in XAML, but under the hood // the attached property now uses InputReturnType: public static DependencyProperty ReturnTypeProperty = DependencyProperty.RegisterAttached( "ReturnType", typeof(InputReturnType), typeof(InputExtensions), new PropertyMetadata(InputReturnType.Default, OnReturnTypeChanged));