12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using FairyGUI;
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
-
-
-
-
- public partial class PartnerSbRecommendListItemCtrl : UIController<PartnerSbRecommendListItemVM>
- {
- protected override void OnEnable(object intent)
- {
- AddUIListenres();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres()
- {
- VM.UseBtn.onClick.Add(OnClickUseBtn);
- }
- private void RemoveUIListenres()
- {
- VM.UseBtn.onClick.Remove(OnClickUseBtn);
- }
- private void OnClickUseBtn(EventContext context)
- {
- }
- #endregion
- }
- }
|