KLUITeamApplicationPanelView.lua 1.0 KB

12345678910111213141516171819202122232425
  1. ---@class KLUITeamApplicationPanelView:UIKmlLuaViewBase
  2. ---@field panel_1259 UIKmlLuaControl
  3. ---@field img_1260 UIKmlLuaControl
  4. ---@field text_1261 UIKmlLuaControl
  5. ---@field text_1262 UIKmlLuaControl
  6. ---@field text_1263 UIKmlLuaControl
  7. ---@field text_1264 UIKmlLuaControl
  8. ---@field text_1265 UIKmlLuaControl
  9. ---@field application_scrollview UIKmlLuaControl
  10. ---@field application_gridview UIKmlLuaControl
  11. ---@field application_datalist UIKmlLuaControl
  12. ---@field gridview1 UIKmlLuaControl
  13. ---@field agreebtn UIKmlLuaControl
  14. ---@field clearbtn UIKmlLuaControl
  15. local KLUITeamApplicationPanelView = {}
  16. setmetatable(KLUITeamApplicationPanelView,UIKmlLuaViewBase)
  17. local kmlPath = 'dev/ui/Team/Panel/KLUITeamApplication/KLUITeamApplicationPanelKml'
  18. KLUITeamApplicationPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  19. ---@param parent UIKmlLuaControl
  20. function KLUITeamApplicationPanelView:Init(parent)
  21. self:InitRoot(parent,kmlPath,KLUITeamApplicationPanelView.content)
  22. end
  23. return KLUITeamApplicationPanelView