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