123456789101112131415161718192021222324252627282930313233 |
- ---@class KLShapeShiftCardMainPanelView:UIKmlLuaViewBase
- ---@field img_bg UIKmlLuaControl
- ---@field img_51 UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field toggle_group_title UIKmlLuaControl
- ---@field layout_55 UIKmlLuaControl
- ---@field toggle_inlay UIKmlLuaControl
- ---@field text_57 UIKmlLuaControl
- ---@field item_equip_redPoint_inlay UIKmlLuaControl
- ---@field toggle_house UIKmlLuaControl
- ---@field text_59 UIKmlLuaControl
- ---@field item_equip_redPoint_house UIKmlLuaControl
- ---@field toggle_synthesis UIKmlLuaControl
- ---@field text_61 UIKmlLuaControl
- ---@field item_equip_redPoint_synthesis UIKmlLuaControl
- ---@field toggle_break UIKmlLuaControl
- ---@field text_61 UIKmlLuaControl
- ---@field item_equip_redPoint_break UIKmlLuaControl
- ---@field toggle_shop UIKmlLuaControl
- ---@field text_63 UIKmlLuaControl
- ---@field item_equip_redPoint_shop UIKmlLuaControl
- ---@field img_block UIKmlLuaControl
- local KLShapeShiftCardMainPanelView = {}
- setmetatable(KLShapeShiftCardMainPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardMain/KLShapeShiftCardMainPanelKml'
- KLShapeShiftCardMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShapeShiftCardMainPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLShapeShiftCardMainPanelView.content)
- end
- return KLShapeShiftCardMainPanelView
|