12345678910111213141516171819202122232425262728293031323334353637 |
- ---@class KLOffHookInfoItemView:UIKmlLuaViewBase
- ---@field Bg UIKmlLuaControl
- ---@field Describe UIKmlLuaControl
- ---@field offlineTitleTxt UIKmlLuaControl
- ---@field txtOffline UIKmlLuaControl
- ---@field fightMonsterTimeTitleTxt UIKmlLuaControl
- ---@field txtFightMonsterTime UIKmlLuaControl
- ---@field fightMonsterExpTitleTxt UIKmlLuaControl
- ---@field txtFightMonsterExp UIKmlLuaControl
- ---@field bubbleTimeTitleTxt UIKmlLuaControl
- ---@field txtBubbleTime UIKmlLuaControl
- ---@field bubbleExpTitleTxt UIKmlLuaControl
- ---@field txtBubbleExp UIKmlLuaControl
- ---@field offHookLogs UIKmlLuaControl
- ---@field logBg UIKmlLuaControl
- ---@field logInfoTitte UIKmlLuaControl
- ---@field scrollview UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field logInfoTxt UIKmlLuaControl
- ---@field btnHelp UIKmlLuaControl
- ---@field layout UIKmlLuaControl
- ---@field Exp UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field totleExp UIKmlLuaControl
- ---@field receiveExpBtn UIKmlLuaControl
- ---@field redDot UIKmlLuaControl
- local KLOffHookInfoItemView = {}
- setmetatable(KLOffHookInfoItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Hook/Item/KLOffHookInfo/KLOffHookInfoItemKml'
- KLOffHookInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOffHookInfoItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOffHookInfoItemView.content)
- end
- return KLOffHookInfoItemView
|