KLSettlementPanelView.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---@class KLSettlementPanelView:UIKmlLuaViewBase
  2. ---@field bgClose UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field bg1 UIKmlLuaControl
  5. ---@field title UIKmlLuaControl
  6. ---@field gainExprienceBg UIKmlLuaControl
  7. ---@field killMonsterCountBg UIKmlLuaControl
  8. ---@field gainExprienceBg1 UIKmlLuaControl
  9. ---@field killMonsterCountBg1 UIKmlLuaControl
  10. ---@field togglegroup UIKmlLuaControl
  11. ---@field scrollviewList UIKmlLuaControl
  12. ---@field select_layout UIKmlLuaControl
  13. ---@field select_item_list UIKmlLuaControl
  14. ---@field gainExprience UIKmlLuaControl
  15. ---@field killMonsterCount UIKmlLuaControl
  16. ---@field costContainer UIKmlLuaControl
  17. ---@field itemBg UIKmlLuaControl
  18. ---@field costItem UIKmlLuaControl
  19. ---@field costItemCountTxt UIKmlLuaControl
  20. ---@field addbtn UIKmlLuaControl
  21. ---@field costEnterCountTxt UIKmlLuaControl
  22. ---@field closeBtn UIKmlLuaControl
  23. ---@field okBtn UIKmlLuaControl
  24. local KLSettlementPanelView = {}
  25. setmetatable(KLSettlementPanelView,UIKmlLuaViewBase)
  26. local kmlPath = 'dev/outui/Activity/Panel/KLSettlement/KLSettlementPanelKml'
  27. KLSettlementPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  28. ---@param parent UIKmlLuaControl
  29. function KLSettlementPanelView:Init(parent)
  30. self:InitRoot(parent,kmlPath,KLSettlementPanelView.content)
  31. end
  32. return KLSettlementPanelView