| 1234567891011121314151617181920212223 |
- ---@class KLGameAnnouncementPanelView:UIKmlLuaViewBase
- ---@field mask UIKmlLuaControl
- ---@field img_13 UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field vline UIKmlLuaControl
- ---@field selectGamesToggroup UIKmlLuaControl
- ---@field selectGamesTogs UIKmlLuaControl
- ---@field selectGamesTogsDataList UIKmlLuaControl
- ---@field scrollview UIKmlLuaControl
- ---@field textInfo UIKmlLuaControl
- ---@field btn_iknow UIKmlLuaControl
- local KLGameAnnouncementPanelView = {}
- setmetatable(KLGameAnnouncementPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Login/Panel/KLGameAnnouncement_PC/KLGameAnnouncementPanelKml'
- KLGameAnnouncementPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLGameAnnouncementPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLGameAnnouncementPanelView.content)
- end
- return KLGameAnnouncementPanelView
|