KLShopMallBuyUIPanelView.lua 773 B

12345678910111213141516171819
  1. ---@class KLShopMallBuyUIPanelView:UIKmlLuaViewBase
  2. ---@field ClickMask UIKmlLuaControl
  3. ---@field InputFieldLevel UIKmlLuaControl
  4. ---@field TextTotalPrice UIKmlLuaControl
  5. ---@field BtnBuy UIKmlLuaControl
  6. ---@field BtnLevelMinus UIKmlLuaControl
  7. ---@field BtnLevelAdd UIKmlLuaControl
  8. ---@field icon_money UIKmlLuaControl
  9. local KLShopMallBuyUIPanelView = {}
  10. setmetatable(KLShopMallBuyUIPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/ui/ShopMall/Panel/KLShopMallBuyUI/KLShopMallBuyUIPanelKml'
  12. KLShopMallBuyUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLShopMallBuyUIPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLShopMallBuyUIPanelView.content)
  16. end
  17. return KLShopMallBuyUIPanelView