123456789101112131415161718 |
- ---@class KLShapeShiftCardAutoUpgradePanelView:UIKmlLuaViewBase
- ---@field img1 UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field text_tips UIKmlLuaControl
- ---@field togglegroup_auto UIKmlLuaControl
- ---@field toggle_layout UIKmlLuaControl
- ---@field toggle_list UIKmlLuaControl
- ---@field btn_card_func UIKmlLuaControl
- local KLShapeShiftCardAutoUpgradePanelView = {}
- setmetatable(KLShapeShiftCardAutoUpgradePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardAutoUpgrade/KLShapeShiftCardAutoUpgradePanelKml'
- KLShapeShiftCardAutoUpgradePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShapeShiftCardAutoUpgradePanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLShapeShiftCardAutoUpgradePanelView.content)
- end
- return KLShapeShiftCardAutoUpgradePanelView
|