1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ---@class KLShapeShiftCardHousePanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field togglegroup_card UIKmlLuaControl
- ---@field layout_card UIKmlLuaControl
- ---@field toggle_all UIKmlLuaControl
- ---@field text8 UIKmlLuaControl
- ---@field toggle_shift UIKmlLuaControl
- ---@field text4 UIKmlLuaControl
- ---@field toggle_attr UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field loopscrollview_card UIKmlLuaControl
- ---@field datalist_card UIKmlLuaControl
- ---@field btn_recovery_up UIKmlLuaControl
- ---@field text10 UIKmlLuaControl
- ---@field img_btn_icon UIKmlLuaControl
- ---@field btn_tips UIKmlLuaControl
- ---@field panel_recovery UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field item_recovery UIKmlLuaControl
- ---@field toggle_bule UIKmlLuaControl
- ---@field text26 UIKmlLuaControl
- ---@field toggle_gold UIKmlLuaControl
- ---@field text27 UIKmlLuaControl
- ---@field toggle_red UIKmlLuaControl
- ---@field text28 UIKmlLuaControl
- ---@field btn_recovery UIKmlLuaControl
- ---@field panel_no_card UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field btn_go UIKmlLuaControl
- local KLShapeShiftCardHousePanelView = {}
- setmetatable(KLShapeShiftCardHousePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardHouse/KLShapeShiftCardHousePanelKml'
- KLShapeShiftCardHousePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShapeShiftCardHousePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLShapeShiftCardHousePanelView.content)
- end
- return KLShapeShiftCardHousePanelView
|