KLShapeShiftCardHousePanelView.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---@class KLShapeShiftCardHousePanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field img2 UIKmlLuaControl
  4. ---@field togglegroup_card UIKmlLuaControl
  5. ---@field layout_card UIKmlLuaControl
  6. ---@field toggle_all UIKmlLuaControl
  7. ---@field text8 UIKmlLuaControl
  8. ---@field toggle_shift UIKmlLuaControl
  9. ---@field text4 UIKmlLuaControl
  10. ---@field toggle_attr UIKmlLuaControl
  11. ---@field text5 UIKmlLuaControl
  12. ---@field loopscrollview_card UIKmlLuaControl
  13. ---@field datalist_card UIKmlLuaControl
  14. ---@field btn_recovery_up UIKmlLuaControl
  15. ---@field text10 UIKmlLuaControl
  16. ---@field img_btn_icon UIKmlLuaControl
  17. ---@field btn_tips UIKmlLuaControl
  18. ---@field panel_recovery UIKmlLuaControl
  19. ---@field img4 UIKmlLuaControl
  20. ---@field item_recovery UIKmlLuaControl
  21. ---@field toggle_bule UIKmlLuaControl
  22. ---@field text26 UIKmlLuaControl
  23. ---@field toggle_gold UIKmlLuaControl
  24. ---@field text27 UIKmlLuaControl
  25. ---@field toggle_red UIKmlLuaControl
  26. ---@field text28 UIKmlLuaControl
  27. ---@field btn_recovery UIKmlLuaControl
  28. ---@field panel_no_card UIKmlLuaControl
  29. ---@field img3 UIKmlLuaControl
  30. ---@field btn_go UIKmlLuaControl
  31. local KLShapeShiftCardHousePanelView = {}
  32. setmetatable(KLShapeShiftCardHousePanelView,UIKmlLuaViewBase)
  33. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardHouse/KLShapeShiftCardHousePanelKml'
  34. KLShapeShiftCardHousePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  35. ---@param parent UIKmlLuaControl
  36. function KLShapeShiftCardHousePanelView:Init(parent)
  37. self:InitRoot(parent,kmlPath,KLShapeShiftCardHousePanelView.content)
  38. end
  39. return KLShapeShiftCardHousePanelView