KLUnionSummaryInfoPanelView.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---@class KLUnionSummaryInfoPanelView:UIKmlLuaViewBase
  2. ---@field inner_bg UIKmlLuaControl
  3. ---@field title UIKmlLuaControl
  4. ---@field closeBtn UIKmlLuaControl
  5. ---@field info_panel UIKmlLuaControl
  6. ---@field flag_bg UIKmlLuaControl
  7. ---@field flag_img UIKmlLuaControl
  8. ---@field info_text_panel UIKmlLuaControl
  9. ---@field name_bg UIKmlLuaControl
  10. ---@field name_text UIKmlLuaControl
  11. ---@field info_level_panel UIKmlLuaControl
  12. ---@field exp_text UIKmlLuaControl
  13. ---@field exp_text_value UIKmlLuaControl
  14. ---@field info_num_panel UIKmlLuaControl
  15. ---@field exp_num UIKmlLuaControl
  16. ---@field exp_num_value UIKmlLuaControl
  17. ---@field info_owner_panel UIKmlLuaControl
  18. ---@field exp_owner UIKmlLuaControl
  19. ---@field exp_owner_value UIKmlLuaControl
  20. ---@field content_bg UIKmlLuaControl
  21. ---@field content_bg_l UIKmlLuaControl
  22. ---@field content_title UIKmlLuaControl
  23. ---@field content_bg_r UIKmlLuaControl
  24. ---@field union_content UIKmlLuaControl
  25. local KLUnionSummaryInfoPanelView = {}
  26. setmetatable(KLUnionSummaryInfoPanelView,UIKmlLuaViewBase)
  27. local kmlPath = 'dev/ui/Union/Panel/KLUnionSummaryInfo/KLUnionSummaryInfoPanelKml'
  28. KLUnionSummaryInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  29. ---@param parent UIKmlLuaControl
  30. function KLUnionSummaryInfoPanelView:Init(parent)
  31. self:InitRoot(parent,kmlPath,KLUnionSummaryInfoPanelView.content)
  32. end
  33. return KLUnionSummaryInfoPanelView