123456789101112131415161718192021 |
- ---@class KLShapeShiftCardBuyPanelView:UIKmlLuaViewBase
- ---@field prefab_11 UIKmlLuaControl
- ---@field ClickMask UIKmlLuaControl
- ---@field InputFieldLevel UIKmlLuaControl
- ---@field Text UIKmlLuaControl
- ---@field TextTotalPrice UIKmlLuaControl
- ---@field BtnBuy UIKmlLuaControl
- ---@field BtnLevelMinus UIKmlLuaControl
- ---@field BtnLevelAdd UIKmlLuaControl
- ---@field icon_money UIKmlLuaControl
- local KLShapeShiftCardBuyPanelView = {}
- setmetatable(KLShapeShiftCardBuyPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardBuy/KLShapeShiftCardBuyPanelKml'
- KLShapeShiftCardBuyPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShapeShiftCardBuyPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLShapeShiftCardBuyPanelView.content)
- end
- return KLShapeShiftCardBuyPanelView
|