12345678910111213141516171819202122232425262728 |
- ---@class KLSkillBagPanelView:UIKmlLuaViewBase
- ---@field cut_area_up UIKmlLuaControl
- ---@field cut_area_down UIKmlLuaControl
- ---@field img_66 UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field sv_frame UIKmlLuaControl
- ---@field person_shop_btn UIKmlLuaControl
- ---@field FastItemTip UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field text4 UIKmlLuaControl
- ---@field storage_btn UIKmlLuaControl
- ---@field recycle_btn UIKmlLuaControl
- ---@field tidy_btn UIKmlLuaControl
- ---@field fastItemTip UIKmlLuaControl
- ---@field bgGridRoot UIKmlLuaControl
- local KLSkillBagPanelView = {}
- setmetatable(KLSkillBagPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Bag/Panel/KLSkillBag/KLSkillBagPanelKml'
- KLSkillBagPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLSkillBagPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLSkillBagPanelView.content)
- end
- return KLSkillBagPanelView
|