KLLoranSiegeCopyTaskPanelView.lua 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---@class KLLoranSiegeCopyTaskPanelView:UIKmlLuaViewBase
  2. ---@field Boss UIKmlLuaControl
  3. ---@field ActivityName UIKmlLuaControl
  4. ---@field line_1 UIKmlLuaControl
  5. ---@field line_2 UIKmlLuaControl
  6. ---@field task_root UIKmlLuaControl
  7. ---@field pos_root UIKmlLuaControl
  8. ---@field TaskButton UIKmlLuaControl
  9. ---@field arrow UIKmlLuaControl
  10. ---@field taskIcon UIKmlLuaControl
  11. ---@field stateName UIKmlLuaControl
  12. ---@field taskName UIKmlLuaControl
  13. ---@field taskProgress UIKmlLuaControl
  14. ---@field nowOccupyingPartyTitle UIKmlLuaControl
  15. ---@field nowOccupyingPartyName UIKmlLuaControl
  16. ---@field unionRankTitle UIKmlLuaControl
  17. ---@field unionRankText UIKmlLuaControl
  18. ---@field myRankTitle UIKmlLuaControl
  19. ---@field myRankText UIKmlLuaControl
  20. ---@field myPointsTitle UIKmlLuaControl
  21. ---@field myPointsText UIKmlLuaControl
  22. ---@field end_time UIKmlLuaControl
  23. ---@field HelpButton UIKmlLuaControl
  24. ---@field text_countdown_tips UIKmlLuaControl
  25. ---@field text_countdown_tips_text UIKmlLuaControl
  26. ---@field begin_root UIKmlLuaControl
  27. ---@field openDes UIKmlLuaControl
  28. ---@field openDesTxt UIKmlLuaControl
  29. ---@field exitBtn UIKmlLuaControl
  30. ---@field loading UIKmlLuaControl
  31. ---@field loadingText UIKmlLuaControl
  32. ---@field loadingNumText UIKmlLuaControl
  33. local KLLoranSiegeCopyTaskPanelView = {}
  34. setmetatable(KLLoranSiegeCopyTaskPanelView,UIKmlLuaViewBase)
  35. local kmlPath = 'dev/outui/LoranSiege/Panel/KLLoranSiegeCopyTask/KLLoranSiegeCopyTaskPanelKml'
  36. KLLoranSiegeCopyTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  37. ---@param parent UIKmlLuaControl
  38. function KLLoranSiegeCopyTaskPanelView:Init(parent)
  39. self:InitRoot(parent,kmlPath,KLLoranSiegeCopyTaskPanelView.content)
  40. end
  41. return KLLoranSiegeCopyTaskPanelView