1234567891011121314151617181920212223242526272829 |
- ---@class KLUIOpenServiceArchangelWelfarePanelView:UIKmlLuaViewBase
- ---@field UIOpenServiceArchangelWelfarePanel UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field progress_attach UIKmlLuaControl
- ---@field icon UIKmlLuaControl
- ---@field num UIKmlLuaControl
- ---@field ScheduleScrollView UIKmlLuaControl
- ---@field Viewport UIKmlLuaControl
- ---@field ScheduleContent UIKmlLuaControl
- ---@field ScheduleRewardViewList UIKmlLuaControl
- ---@field DataScheduleRewardList UIKmlLuaControl
- ---@field WelfScrollView UIKmlLuaControl
- ---@field Viewport_1 UIKmlLuaControl
- ---@field WelfContent UIKmlLuaControl
- ---@field WelfRewardViewList UIKmlLuaControl
- ---@field DataWelfRewardList UIKmlLuaControl
- ---@field EndText UIKmlLuaControl
- ---@field Text UIKmlLuaControl
- local KLUIOpenServiceArchangelWelfarePanelView = {}
- setmetatable(KLUIOpenServiceArchangelWelfarePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/OpenServiceArchangelWelfare/Panel/KLUIOpenServiceArchangelWelfare/KLUIOpenServiceArchangelWelfarePanelKml'
- KLUIOpenServiceArchangelWelfarePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIOpenServiceArchangelWelfarePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIOpenServiceArchangelWelfarePanelView.content)
- end
- return KLUIOpenServiceArchangelWelfarePanelView
|