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
ControlTemplateResult is made as an alias over its parent generic type. The parent type already has Result member of type Control in case of ControlTemplateResult, and ControlTemplateResult adds one more property named Control storing the same value.
Expected behavior
At least Control property must not have a backing field and use Result as the value source. Another option is to remove Control and leave the type mostly empty by using the base implementation.
The text was updated successfully, but these errors were encountered:
Describe the bug
ControlTemplateResult
is made as an alias over its parent generic type. The parent type already hasResult
member of typeControl
in case ofControlTemplateResult
, andControlTemplateResult
adds one more property namedControl
storing the same value.Expected behavior
At least
Control
property must not have a backing field and useResult
as the value source. Another option is to removeControl
and leave the type mostly empty by using the base implementation.The text was updated successfully, but these errors were encountered: