12345678910111213141516171819 |
- ---@class KLAthleticsItemView:UIKmlLuaViewBase
- ---@field imgbg UIKmlLuaControl
- ---@field imgsort UIKmlLuaControl
- ---@field textsort UIKmlLuaControl
- ---@field scrollview UIKmlLuaControl
- ---@field layout UIKmlLuaControl
- ---@field rewards_data UIKmlLuaControl
- ---@field name UIKmlLuaControl
- local KLAthleticsItemView = {}
- setmetatable(KLAthleticsItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ServerActivity/Item/KLAthletics/KLAthleticsItemKml'
- KLAthleticsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLAthleticsItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLAthleticsItemView.content)
- end
- return KLAthleticsItemView
|