KLPreviewPanelView.lua 1.0 KB

12345678910111213141516171819202122232425262728
  1. ---@class KLPreviewPanelView:UIKmlLuaViewBase
  2. ---@field PreviewUI UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field Previewview UIKmlLuaControl
  5. ---@field layout UIKmlLuaControl
  6. ---@field previewlist UIKmlLuaControl
  7. ---@field content_scroll UIKmlLuaControl
  8. ---@field content_layout_scroll UIKmlLuaControl
  9. ---@field contentlist UIKmlLuaControl
  10. ---@field preview_receive UIKmlLuaControl
  11. ---@field receive_item UIKmlLuaControl
  12. ---@field clickItem UIKmlLuaControl
  13. ---@field receive_btn UIKmlLuaControl
  14. ---@field btnEffect UIKmlLuaControl
  15. ---@field receive_text UIKmlLuaControl
  16. ---@field title UIKmlLuaControl
  17. ---@field closeBtn UIKmlLuaControl
  18. local KLPreviewPanelView = {}
  19. setmetatable(KLPreviewPanelView,UIKmlLuaViewBase)
  20. local kmlPath = 'dev/ui/Preview/Panel/KLPreview/KLPreviewPanelKml'
  21. KLPreviewPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  22. ---@param parent UIKmlLuaControl
  23. function KLPreviewPanelView:Init(parent)
  24. self:InitRoot(parent,kmlPath,KLPreviewPanelView.content)
  25. end
  26. return KLPreviewPanelView