12345678910111213141516171819202122232425262728293031323334 |
- ---@class KLNPCShopPanelView:UIKmlLuaViewBase
- ---@field Background UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field scrollerBg UIKmlLuaControl
- ---@field ItemList UIKmlLuaControl
- ---@field ItemLayout UIKmlLuaControl
- ---@field goods UIKmlLuaControl
- ---@field desButton UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field autoBuyBackground UIKmlLuaControl
- ---@field autoBuyToggleCheck UIKmlLuaControl
- ---@field autoBuyText UIKmlLuaControl
- ---@field MoneyList UIKmlLuaControl
- ---@field MoneyList UIKmlLuaControl
- ---@field moneyBackground UIKmlLuaControl
- ---@field moneyText UIKmlLuaControl
- ---@field MUCoinBackground UIKmlLuaControl
- ---@field muCoinText UIKmlLuaControl
- ---@field MUBindCoinBackground UIKmlLuaControl
- ---@field MUBindCoinIcon UIKmlLuaControl
- ---@field muBindCoinText UIKmlLuaControl
- ---@field diamondBackground UIKmlLuaControl
- ---@field diamondText UIKmlLuaControl
- local KLNPCShopPanelView = {}
- setmetatable(KLNPCShopPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/NPC/Panel/KLNPCShop/KLNPCShopPanelKml'
- KLNPCShopPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLNPCShopPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLNPCShopPanelView.content)
- end
- return KLNPCShopPanelView
|