We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only the first generic argument is presented in the UxmlTraits.
UxmlTraits
Create a control with a complex BaseType like the following:
BaseType
[UxmlElement] public partial class BindableImageListView : BindableListView<ImagesItemViewModel, ReusableItemsList<ImagesItemViewModel>> { [UxmlAttribute(10)] public int ItemsCacheCapacity { get; set; } }
public new class UxmlTraits : BindableListView<ImagesItemViewModel>.UxmlTraits { ... }
public new class UxmlTraits : BindableListView<ImagesItemViewModel, ReusableItemsList<ImagesItemViewModel>>.UxmlTraits { ... }
The text was updated successfully, but these errors were encountered:
Resolve #14. Fix generic type arguments issue.
995cc01
ChebanovDD
Successfully merging a pull request may close this issue.
Describe the bug
Only the first generic argument is presented in the
UxmlTraits
.Minimal reproduction code and steps
Create a control with a complex
BaseType
like the following:Current result
Expected result
The text was updated successfully, but these errors were encountered: