KLUIEquipTransferPanelView.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---@class KLUIEquipTransferPanelView:UIKmlLuaViewBase
  2. ---@field equip_bg UIKmlLuaControl
  3. ---@field panel_main UIKmlLuaControl
  4. ---@field title_transfer UIKmlLuaControl
  5. ---@field btn_close UIKmlLuaControl
  6. ---@field img_36 UIKmlLuaControl
  7. ---@field panel_equip_source UIKmlLuaControl
  8. ---@field panel_equip_source_item UIKmlLuaControl
  9. ---@field img_equip_source_select UIKmlLuaControl
  10. ---@field img_equip_source_add UIKmlLuaControl
  11. ---@field img_41 UIKmlLuaControl
  12. ---@field btn_equip_source_takeoff UIKmlLuaControl
  13. ---@field panel_equip_target UIKmlLuaControl
  14. ---@field panel_equip_target_item UIKmlLuaControl
  15. ---@field img_equip_target_select UIKmlLuaControl
  16. ---@field img_equip_target_add UIKmlLuaControl
  17. ---@field img_equip_target_select_text UIKmlLuaControl
  18. ---@field btn_equip_target_takeoff UIKmlLuaControl
  19. ---@field img_49 UIKmlLuaControl
  20. ---@field img_50 UIKmlLuaControl
  21. ---@field toggle_transfer_strengthen UIKmlLuaControl
  22. ---@field img_transfer_strengthen UIKmlLuaControl
  23. ---@field toggle_transfer_append UIKmlLuaControl
  24. ---@field img_transfer_append UIKmlLuaControl
  25. ---@field panel_55 UIKmlLuaControl
  26. ---@field img_56 UIKmlLuaControl
  27. ---@field text_57 UIKmlLuaControl
  28. ---@field cost_panel UIKmlLuaControl
  29. ---@field item_cost UIKmlLuaControl
  30. ---@field text_cost_item_name UIKmlLuaControl
  31. ---@field text_item_bag_count UIKmlLuaControl
  32. ---@field success_anim UIKmlLuaControl
  33. ---@field successText UIKmlLuaControl
  34. ---@field btn_transfer UIKmlLuaControl
  35. ---@field text_reborn_tips UIKmlLuaControl
  36. local KLUIEquipTransferPanelView = {}
  37. setmetatable(KLUIEquipTransferPanelView,UIKmlLuaViewBase)
  38. local kmlPath = 'dev/outui/Equip/Panel/KLUIEquipTransfer/KLUIEquipTransferPanelKml'
  39. KLUIEquipTransferPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  40. ---@param parent UIKmlLuaControl
  41. function KLUIEquipTransferPanelView:Init(parent)
  42. self:InitRoot(parent,kmlPath,KLUIEquipTransferPanelView.content)
  43. end
  44. return KLUIEquipTransferPanelView