KLShapeShiftCardInlayPanelView.lua 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ---@class KLShapeShiftCardInlayPanelView:UIKmlLuaViewBase
  2. ---@field img_25 UIKmlLuaControl
  3. ---@field img2 UIKmlLuaControl
  4. ---@field panel_item UIKmlLuaControl
  5. ---@field equip_part_4 UIKmlLuaControl
  6. ---@field item_equip_4 UIKmlLuaControl
  7. ---@field equip_part_6 UIKmlLuaControl
  8. ---@field item_equip_6 UIKmlLuaControl
  9. ---@field equip_part_7 UIKmlLuaControl
  10. ---@field item_equip_7 UIKmlLuaControl
  11. ---@field equip_part_8 UIKmlLuaControl
  12. ---@field item_equip_8 UIKmlLuaControl
  13. ---@field equip_part_1 UIKmlLuaControl
  14. ---@field item_equip_1 UIKmlLuaControl
  15. ---@field equip_part_2 UIKmlLuaControl
  16. ---@field item_equip_2 UIKmlLuaControl
  17. ---@field equip_part_10 UIKmlLuaControl
  18. ---@field item_equip_10 UIKmlLuaControl
  19. ---@field equip_part_11 UIKmlLuaControl
  20. ---@field item_equip_11 UIKmlLuaControl
  21. ---@field equip_part_12 UIKmlLuaControl
  22. ---@field item_equip_12 UIKmlLuaControl
  23. ---@field equip_part_13 UIKmlLuaControl
  24. ---@field item_equip_13 UIKmlLuaControl
  25. ---@field equip_part_5 UIKmlLuaControl
  26. ---@field item_equip_5 UIKmlLuaControl
  27. ---@field equip_part_9 UIKmlLuaControl
  28. ---@field item_equip_9 UIKmlLuaControl
  29. ---@field osa_card_list UIKmlLuaControl
  30. ---@field datalist_30 UIKmlLuaControl
  31. ---@field img_equip_part_select UIKmlLuaControl
  32. ---@field panel_lapse UIKmlLuaControl
  33. ---@field text_75 UIKmlLuaControl
  34. ---@field layout_all_attr UIKmlLuaControl
  35. ---@field panel_77 UIKmlLuaControl
  36. ---@field text_78 UIKmlLuaControl
  37. ---@field img_79 UIKmlLuaControl
  38. ---@field img_80 UIKmlLuaControl
  39. ---@field img_left_tips UIKmlLuaControl
  40. ---@field osa_attr_list_left UIKmlLuaControl
  41. ---@field datalist_132 UIKmlLuaControl
  42. ---@field panel_82 UIKmlLuaControl
  43. ---@field text_83 UIKmlLuaControl
  44. ---@field img_84 UIKmlLuaControl
  45. ---@field img_85 UIKmlLuaControl
  46. ---@field img_right_tips UIKmlLuaControl
  47. ---@field osa_attr_list_right UIKmlLuaControl
  48. ---@field datalist_139 UIKmlLuaControl
  49. ---@field panel_cards UIKmlLuaControl
  50. ---@field img5 UIKmlLuaControl
  51. ---@field text17 UIKmlLuaControl
  52. ---@field btn_card_close UIKmlLuaControl
  53. ---@field osa_card_house_list UIKmlLuaControl
  54. ---@field osa_card_house_datalist UIKmlLuaControl
  55. local KLShapeShiftCardInlayPanelView = {}
  56. setmetatable(KLShapeShiftCardInlayPanelView,UIKmlLuaViewBase)
  57. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardInlay/KLShapeShiftCardInlayPanelKml'
  58. KLShapeShiftCardInlayPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  59. ---@param parent UIKmlLuaControl
  60. function KLShapeShiftCardInlayPanelView:Init(parent)
  61. self:InitRoot(parent,kmlPath,KLShapeShiftCardInlayPanelView.content)
  62. end
  63. return KLShapeShiftCardInlayPanelView