12345678910111213141516 |
- ---@class KLNPCShopTipPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field text_bg UIKmlLuaControl
- ---@field close_btn UIKmlLuaControl
- ---@field ContentTxt UIKmlLuaControl
- local KLNPCShopTipPanelView = {}
- setmetatable(KLNPCShopTipPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/NPC/Panel/KLNPCShopTip/KLNPCShopTipPanelKml'
- KLNPCShopTipPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLNPCShopTipPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLNPCShopTipPanelView.content)
- end
- return KLNPCShopTipPanelView
|