123456789101112131415161718192021222324252627282930313233 |
- ---@class KLDepotsPanelView:UIKmlLuaViewBase
- ---@field cut_area_up UIKmlLuaControl
- ---@field cut_area_down UIKmlLuaControl
- ---@field storeText UIKmlLuaControl
- ---@field edit_btn UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field sv_frame UIKmlLuaControl
- ---@field pageLeft_btn UIKmlLuaControl
- ---@field pageRight_btn UIKmlLuaControl
- ---@field add_btn UIKmlLuaControl
- ---@field tidy_btn UIKmlLuaControl
- ---@field PageScrollView UIKmlLuaControl
- ---@field ItemContent UIKmlLuaControl
- ---@field edit_panel UIKmlLuaControl
- ---@field bgImg UIKmlLuaControl
- ---@field edit_oldName UIKmlLuaControl
- ---@field edit_CloseBtn UIKmlLuaControl
- ---@field old_Store_Name UIKmlLuaControl
- ---@field store_Name_Input UIKmlLuaControl
- ---@field edit_Cancel UIKmlLuaControl
- ---@field edit_Enter UIKmlLuaControl
- local KLDepotsPanelView = {}
- setmetatable(KLDepotsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Bag/Panel/KLDepots/KLDepotsPanelKml'
- KLDepotsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLDepotsPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLDepotsPanelView.content)
- end
- return KLDepotsPanelView
|