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
This is due to a tricky dependency resolution issue.
Every XAML document goes through 2 parsing passes. In pass 1, we scan for files that haven't been loaded. Once dependencies have been loaded asynchronously, we can proceed with pass 2 loading the markup.
Most likely, pass 1 needs to be updated to scan for Style TargetTypes.
I'm trying to define two custom controls in the app (not in a library), but it gives me this error:
In Resources/Styles.fayde I have two styles defining the template for two controls.
Note that if I remove MyControl2 style, it works, no error appears
Styles.fayde:
The implementation is the same for both:
MyControl.ts:
MyControl2.ts:
In default.fap, I'm just using one control:
<controls:MyControl />
The text was updated successfully, but these errors were encountered: