12345678910111213141516171819202122 |
- ---@class KLRecoverBagPanelView:UIKmlLuaViewBase
- ---@field cut_area_up UIKmlLuaControl
- ---@field cut_area_down UIKmlLuaControl
- ---@field img_250 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 KLRecoverBagPanelView = {}
- setmetatable(KLRecoverBagPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Bag/Panel/KLRecoverBag/KLRecoverBagPanelKml'
- KLRecoverBagPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRecoverBagPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRecoverBagPanelView.content)
- end
- return KLRecoverBagPanelView
|