KLBoxPrivilegePanelView.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---@class KLBoxPrivilegePanelView:UIKmlLuaViewBase
  2. ---@field mask UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field close UIKmlLuaControl
  5. ---@field big_title UIKmlLuaControl
  6. ---@field fu_title UIKmlLuaControl
  7. ---@field content_bg UIKmlLuaControl
  8. ---@field left UIKmlLuaControl
  9. ---@field right UIKmlLuaControl
  10. ---@field toggle_group UIKmlLuaControl
  11. ---@field layout_38 UIKmlLuaControl
  12. ---@field toggle_list UIKmlLuaControl
  13. ---@field panel_1 UIKmlLuaControl
  14. ---@field att_point_1 UIKmlLuaControl
  15. ---@field att_title UIKmlLuaControl
  16. ---@field att_layout UIKmlLuaControl
  17. ---@field att_list UIKmlLuaControl
  18. ---@field activate_text UIKmlLuaControl
  19. ---@field appellation_point_1 UIKmlLuaControl
  20. ---@field att_title UIKmlLuaControl
  21. ---@field appellation_scroll UIKmlLuaControl
  22. ---@field appellation_layout UIKmlLuaControl
  23. ---@field appellation_list UIKmlLuaControl
  24. ---@field panel_2 UIKmlLuaControl
  25. ---@field att_point_2 UIKmlLuaControl
  26. ---@field att_title UIKmlLuaControl
  27. ---@field item_scroll UIKmlLuaControl
  28. ---@field item_layout UIKmlLuaControl
  29. ---@field item_list UIKmlLuaControl
  30. ---@field privilege_btn UIKmlLuaControl
  31. ---@field tip UIKmlLuaControl
  32. ---@field DownLoad UIKmlLuaControl
  33. local KLBoxPrivilegePanelView = {}
  34. setmetatable(KLBoxPrivilegePanelView,UIKmlLuaViewBase)
  35. local kmlPath = 'dev/ui/MiracleBox/Panel/KLBoxPrivilege/KLBoxPrivilegePanelKml'
  36. KLBoxPrivilegePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  37. ---@param parent UIKmlLuaControl
  38. function KLBoxPrivilegePanelView:Init(parent)
  39. self:InitRoot(parent,kmlPath,KLBoxPrivilegePanelView.content)
  40. end
  41. return KLBoxPrivilegePanelView