KLMessageNoticePanelView.lua 986 B

123456789101112131415161718192021222324
  1. ---@class KLMessageNoticePanelView:UIKmlLuaViewBase
  2. ---@field item_ld1 UIKmlLuaControl
  3. ---@field text_message UIKmlLuaControl
  4. ---@field item_ld2 UIKmlLuaControl
  5. ---@field text_message UIKmlLuaControl
  6. ---@field item_ld3 UIKmlLuaControl
  7. ---@field text_message UIKmlLuaControl
  8. ---@field item_ld4 UIKmlLuaControl
  9. ---@field text_message UIKmlLuaControl
  10. ---@field item_ld5 UIKmlLuaControl
  11. ---@field text_message UIKmlLuaControl
  12. ---@field item_ld6 UIKmlLuaControl
  13. ---@field text_message UIKmlLuaControl
  14. ---@field text_mid_message UIKmlLuaControl
  15. local KLMessageNoticePanelView = {}
  16. setmetatable(KLMessageNoticePanelView,UIKmlLuaViewBase)
  17. local kmlPath = 'dev/ui/Notice/Panel/KLMessageNotice/KLMessageNoticePanelKml'
  18. KLMessageNoticePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  19. ---@param parent UIKmlLuaControl
  20. function KLMessageNoticePanelView:Init(parent)
  21. self:InitRoot(parent,kmlPath,KLMessageNoticePanelView.content)
  22. end
  23. return KLMessageNoticePanelView