TileList 自定义 ImageCell,每个图像上的按钮/精灵
您好,我尝试在每个 TileList 项目上添加一些按钮或精灵,我什至制作了自己的 ImageCell 类并注入一些在每个图像上添加精灵的代码,但它不是可点击 - 所有点击都指向“object MyImageCell”而不是特定的精灵,是否有解决方案或任何其他方式在 TileList 项目上添加一些内容?
Hi im trying to add some buttons or sprites on each of TileList items, i even made my own ImageCell class and inject some code that adds sprite on each image but it is not clickable - all clicks are reffering to "object MyImageCell" not that specific sprite, is there a solution for this or any other way for adding some content on TileList items?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您遇到了我遇到的一些问题。在您的 MyImageCell 类中添加此属性:
this.mouseChildren = true;
希望这能有所帮助。
I think you have the some problem as I met.In your MyImageCell class add this property:
this.mouseChildren = true;
Hope this can help.