-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
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
大佬,有没有绑定数据到列表的例子呀... #29
Comments
这个你去看FairyGUI官方教程啊 |
这么写的话,item里面的逻辑你放哪里呢?这里很不好弄 |
x-et里面都会把fui的ui包在一个component里面的 |
那你是怎么绑这个列表数据的 |
|
老哥,你是怎么写的 |
是可以,但是没办法复用这个item。因为逻辑都写到panel里面去了。我也没想到好的写法,不知道作者是啥写法 |
有一个不太完善的方法,这方法不支持虚拟列表。 FUI_CardPanel fuiCardPanel = (FUI_CardPanel)self.FUIMainPanel.CardList.AddItemFromPool(); 注意,作为 List 的 Item 时,CardPanelSystem 里的 RegisterUIEvent, OnShow, OnHide, BeforeUnload 函数没有地方调用。绑定事件的代码需要写在 Awake 里,或者在 Awake 里调用 RegisterUIEvent。 |
如果是虚拟列表的话,需要自己写逻辑判断,在Item消失的时候调用 cardPanel.Dispose(), Item 显示的时候再 self.AddChild<CardPanel, FUI_CardPanel>(fuiCardPanel, true); |
2333.不懂怎么绑定数据
The text was updated successfully, but these errors were encountered: