123456789101112131415161718192021222324252627282930 |
- ---@class KLBagTipsPanelView:UIKmlLuaViewBase
- ---@field move_root UIKmlLuaControl
- ---@field MainPanle UIKmlLuaControl
- ---@field Image UIKmlLuaControl
- ---@field scroll_text_template UIKmlLuaControl
- ---@field KmlScrollTextTemplate UIKmlLuaControl
- ---@field Text UIKmlLuaControl
- ---@field AttrImage UIKmlLuaControl
- ---@field AttrText UIKmlLuaControl
- ---@field Item UIKmlLuaControl
- ---@field BtnClose UIKmlLuaControl
- ---@field equiptag UIKmlLuaControl
- ---@field bagtag UIKmlLuaControl
- ---@field BtnUse1 UIKmlLuaControl
- ---@field UseText UIKmlLuaControl
- ---@field Light UIKmlLuaControl
- ---@field TimeCountdown UIKmlLuaControl
- ---@field strengthLevel UIKmlLuaControl
- ---@field appendLevel UIKmlLuaControl
- local KLBagTipsPanelView = {}
- setmetatable(KLBagTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Preview/Panel/KLBagTips/KLBagTipsPanelKml'
- KLBagTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLBagTipsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLBagTipsPanelView.content)
- end
- return KLBagTipsPanelView
|