KLUICommonTipsPanelView.lua 911 B

123456789101112131415161718192021222324
  1. ---@class KLUICommonTipsPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field bgImg UIKmlLuaControl
  4. ---@field img_title UIKmlLuaControl
  5. ---@field txt_title UIKmlLuaControl
  6. ---@field closeBtn UIKmlLuaControl
  7. ---@field tipsContent UIKmlLuaControl
  8. ---@field btn_cancel UIKmlLuaControl
  9. ---@field btn_sure UIKmlLuaControl
  10. ---@field input UIKmlLuaControl
  11. ---@field slider UIKmlLuaControl
  12. ---@field toggle UIKmlLuaControl
  13. ---@field tipsItemCount UIKmlLuaControl
  14. local KLUICommonTipsPanelView = {}
  15. setmetatable(KLUICommonTipsPanelView,UIKmlLuaViewBase)
  16. local kmlPath = 'dev/ui/Common/Panel/KLUICommonTips/KLUICommonTipsPanelKml'
  17. KLUICommonTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  18. ---@param parent UIKmlLuaControl
  19. function KLUICommonTipsPanelView:Init(parent)
  20. self:InitRoot(parent,kmlPath,KLUICommonTipsPanelView.content)
  21. end
  22. return KLUICommonTipsPanelView