KLShapeShiftCardBuyPanelView.lua 885 B

123456789101112131415161718192021
  1. ---@class KLShapeShiftCardBuyPanelView:UIKmlLuaViewBase
  2. ---@field prefab_11 UIKmlLuaControl
  3. ---@field ClickMask UIKmlLuaControl
  4. ---@field InputFieldLevel UIKmlLuaControl
  5. ---@field Text UIKmlLuaControl
  6. ---@field TextTotalPrice UIKmlLuaControl
  7. ---@field BtnBuy UIKmlLuaControl
  8. ---@field BtnLevelMinus UIKmlLuaControl
  9. ---@field BtnLevelAdd UIKmlLuaControl
  10. ---@field icon_money UIKmlLuaControl
  11. local KLShapeShiftCardBuyPanelView = {}
  12. setmetatable(KLShapeShiftCardBuyPanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardBuy/KLShapeShiftCardBuyPanelKml'
  14. KLShapeShiftCardBuyPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLShapeShiftCardBuyPanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLShapeShiftCardBuyPanelView.content)
  18. end
  19. return KLShapeShiftCardBuyPanelView