12345678910111213141516171819202122232425262728293031 |
- ---@class KLShapeShiftCardShopPanelView:UIKmlLuaViewBase
- ---@field scrollview_panel UIKmlLuaControl
- ---@field layout UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field osa_card_list_1 UIKmlLuaControl
- ---@field datalist_1 UIKmlLuaControl
- ---@field img6 UIKmlLuaControl
- ---@field text7 UIKmlLuaControl
- ---@field osa_card_list_2 UIKmlLuaControl
- ---@field datalist_2 UIKmlLuaControl
- ---@field panel1 UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field item_tokens_1 UIKmlLuaControl
- ---@field text_tokens_1_num UIKmlLuaControl
- ---@field btn_tokens_1_add UIKmlLuaControl
- ---@field img9 UIKmlLuaControl
- ---@field item_tokens_2 UIKmlLuaControl
- ---@field text_tokens_2_num UIKmlLuaControl
- ---@field btn_tokens_2_add UIKmlLuaControl
- local KLShapeShiftCardShopPanelView = {}
- setmetatable(KLShapeShiftCardShopPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardShop/KLShapeShiftCardShopPanelKml'
- KLShapeShiftCardShopPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShapeShiftCardShopPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLShapeShiftCardShopPanelView.content)
- end
- return KLShapeShiftCardShopPanelView
|