12345678910111213141516171819202122232425 |
- ---@class KLDailyRafflePanelView:UIKmlLuaViewBase
- ---@field datalist_active UIKmlLuaControl
- ---@field txt_cur_active_num UIKmlLuaControl
- ---@field icon_get_5 UIKmlLuaControl
- ---@field icon_get_4 UIKmlLuaControl
- ---@field icon_get_3 UIKmlLuaControl
- ---@field icon_get_2 UIKmlLuaControl
- ---@field icon_get_1 UIKmlLuaControl
- ---@field icon_box_5 UIKmlLuaControl
- ---@field icon_box_4 UIKmlLuaControl
- ---@field icon_box_3 UIKmlLuaControl
- ---@field icon_box_2 UIKmlLuaControl
- ---@field icon_box_1 UIKmlLuaControl
- ---@field slider_active_num UIKmlLuaControl
- local KLDailyRafflePanelView = {}
- setmetatable(KLDailyRafflePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/DailyRaffle/Panel/KLDailyRaffle/KLDailyRafflePanelKml'
- KLDailyRafflePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLDailyRafflePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLDailyRafflePanelView.content)
- end
- return KLDailyRafflePanelView
|