KLCommonItemTipsPanelView.lua 785 B

1234567891011121314151617181920
  1. ---@class KLCommonItemTipsPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field bgImg UIKmlLuaControl
  4. ---@field closeBtn UIKmlLuaControl
  5. ---@field tipContent UIKmlLuaControl
  6. ---@field showItem UIKmlLuaControl
  7. ---@field countInfo UIKmlLuaControl
  8. ---@field btn_cancel UIKmlLuaControl
  9. ---@field btn_sure UIKmlLuaControl
  10. local KLCommonItemTipsPanelView = {}
  11. setmetatable(KLCommonItemTipsPanelView,UIKmlLuaViewBase)
  12. local kmlPath = 'dev/ui/Common/Panel/KLCommonItemTips/KLCommonItemTipsPanelKml'
  13. KLCommonItemTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  14. ---@param parent UIKmlLuaControl
  15. function KLCommonItemTipsPanelView:Init(parent)
  16. self:InitRoot(parent,kmlPath,KLCommonItemTipsPanelView.content)
  17. end
  18. return KLCommonItemTipsPanelView