KLNPCShopTipPanel.lua 693 B

1234567891011121314151617181920212223242526272829
  1. ---@class KLNPCShopTipPanel:UIKmlLuaPanelBase
  2. ---@field view KLNPCShopTipPanelView
  3. local KLNPCShopTipPanel = class(UIKmlLuaPanelBase)
  4. local this =KLNPCShopTipPanel
  5. ---创建时调用一次
  6. function this:Init()
  7. end
  8. ---创建或者刷新界面数据时调用
  9. function this:Refresh()
  10. end
  11. ---注册UI事件和服务器消息
  12. function this:RegistEvents()
  13. GUI:AddOnClickEvent(self.view.bg,self,function()
  14. GUI:UIPanel_Close("dev/ui/NPC/Panel/KLNPCShopTip/KLNPCShopTipPanel")
  15. end )
  16. GUI:AddOnClickEvent(self.view.close_btn,self,function()
  17. GUI:UIPanel_Close("dev/ui/NPC/Panel/KLNPCShopTip/KLNPCShopTipPanel")
  18. end )
  19. end
  20. function this:Close()
  21. end
  22. return this