KLUnionCampaignPanelView.lua 1.1 KB

1234567891011121314151617181920212223242526272829
  1. ---@class KLUnionCampaignPanelView:UIKmlLuaViewBase
  2. ---@field BackGround UIKmlLuaControl
  3. ---@field Bg UIKmlLuaControl
  4. ---@field TitleImage UIKmlLuaControl
  5. ---@field txtCountDown UIKmlLuaControl
  6. ---@field btnClose UIKmlLuaControl
  7. ---@field btnRefuse UIKmlLuaControl
  8. ---@field text12 UIKmlLuaControl
  9. ---@field itemRefuse UIKmlLuaControl
  10. ---@field txtRefuse UIKmlLuaControl
  11. ---@field txtDisagreeNum UIKmlLuaControl
  12. ---@field btnAgree UIKmlLuaControl
  13. ---@field text5 UIKmlLuaControl
  14. ---@field itemAgree UIKmlLuaControl
  15. ---@field txtAgree UIKmlLuaControl
  16. ---@field txtAgreeNum UIKmlLuaControl
  17. ---@field txtName UIKmlLuaControl
  18. ---@field txtDesc UIKmlLuaControl
  19. local KLUnionCampaignPanelView = {}
  20. setmetatable(KLUnionCampaignPanelView,UIKmlLuaViewBase)
  21. local kmlPath = 'dev/outui/Union/Panel/KLUnionCampaign/KLUnionCampaignPanelKml'
  22. KLUnionCampaignPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  23. ---@param parent UIKmlLuaControl
  24. function KLUnionCampaignPanelView:Init(parent)
  25. self:InitRoot(parent,kmlPath,KLUnionCampaignPanelView.content)
  26. end
  27. return KLUnionCampaignPanelView