KLReviveTipPanelView.lua 700 B

123456789101112131415161718
  1. ---@class KLReviveTipPanelView:UIKmlLuaViewBase
  2. ---@field KLReviveTip_Panel UIKmlLuaControl
  3. ---@field informationText UIKmlLuaControl
  4. ---@field LeftBtn UIKmlLuaControl
  5. ---@field LeftBtnText UIKmlLuaControl
  6. ---@field RightBtn UIKmlLuaControl
  7. ---@field RightBtnText UIKmlLuaControl
  8. local KLReviveTipPanelView = {}
  9. setmetatable(KLReviveTipPanelView,UIKmlLuaViewBase)
  10. local kmlPath = 'dev/ui/Revive/Panel/KLReviveTip/KLReviveTipPanelKml'
  11. KLReviveTipPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  12. ---@param parent UIKmlLuaControl
  13. function KLReviveTipPanelView:Init(parent)
  14. self:InitRoot(parent,kmlPath,KLReviveTipPanelView.content)
  15. end
  16. return KLReviveTipPanelView