12345678910111213141516171819202122 |
- ---@class KLOverlayBagPanelView:UIKmlLuaViewBase
- ---@field cut_area_up UIKmlLuaControl
- ---@field cut_area_down UIKmlLuaControl
- ---@field img_14 UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field sv_frame UIKmlLuaControl
- ---@field person_shop_btn UIKmlLuaControl
- ---@field storage_btn UIKmlLuaControl
- ---@field recycle_btn UIKmlLuaControl
- ---@field tidy_btn UIKmlLuaControl
- local KLOverlayBagPanelView = {}
- setmetatable(KLOverlayBagPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Bag/Panel/KLOverlayBag/KLOverlayBagPanelKml'
- KLOverlayBagPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOverlayBagPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOverlayBagPanelView.content)
- end
- return KLOverlayBagPanelView
|