123456789101112131415161718192021222324 |
- ---@class KLMessageNoticePanelView:UIKmlLuaViewBase
- ---@field item_ld1 UIKmlLuaControl
- ---@field text_message UIKmlLuaControl
- ---@field item_ld2 UIKmlLuaControl
- ---@field text_message UIKmlLuaControl
- ---@field item_ld3 UIKmlLuaControl
- ---@field text_message UIKmlLuaControl
- ---@field item_ld4 UIKmlLuaControl
- ---@field text_message UIKmlLuaControl
- ---@field item_ld5 UIKmlLuaControl
- ---@field text_message UIKmlLuaControl
- ---@field item_ld6 UIKmlLuaControl
- ---@field text_message UIKmlLuaControl
- ---@field text_mid_message UIKmlLuaControl
- local KLMessageNoticePanelView = {}
- setmetatable(KLMessageNoticePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Notice/Panel/KLMessageNotice/KLMessageNoticePanelKml'
- KLMessageNoticePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMessageNoticePanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLMessageNoticePanelView.content)
- end
- return KLMessageNoticePanelView
|