KLUIEquipQuickTransferPanelView.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---@class KLUIEquipQuickTransferPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field bgImg UIKmlLuaControl
  4. ---@field img_78 UIKmlLuaControl
  5. ---@field closeBtn UIKmlLuaControl
  6. ---@field btn_source_item UIKmlLuaControl
  7. ---@field panel_equip_source UIKmlLuaControl
  8. ---@field img_82 UIKmlLuaControl
  9. ---@field btn_target_item UIKmlLuaControl
  10. ---@field panel_equip_target UIKmlLuaControl
  11. ---@field img_85 UIKmlLuaControl
  12. ---@field tipContent UIKmlLuaControl
  13. ---@field layout_87 UIKmlLuaControl
  14. ---@field tips1 UIKmlLuaControl
  15. ---@field tips2 UIKmlLuaControl
  16. ---@field tips3 UIKmlLuaControl
  17. ---@field text_91 UIKmlLuaControl
  18. ---@field img_92 UIKmlLuaControl
  19. ---@field item_cost UIKmlLuaControl
  20. ---@field text_transfer_cost_name UIKmlLuaControl
  21. ---@field img_95 UIKmlLuaControl
  22. ---@field text_transfer_cost UIKmlLuaControl
  23. ---@field btn_cancel UIKmlLuaControl
  24. ---@field btn_transfer UIKmlLuaControl
  25. local KLUIEquipQuickTransferPanelView = {}
  26. setmetatable(KLUIEquipQuickTransferPanelView,UIKmlLuaViewBase)
  27. local kmlPath = 'dev/outui/Equip/Panel/KLUIEquipQuickTransfer/KLUIEquipQuickTransferPanelKml'
  28. KLUIEquipQuickTransferPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  29. ---@param parent UIKmlLuaControl
  30. function KLUIEquipQuickTransferPanelView:Init(parent)
  31. self:InitRoot(parent,kmlPath,KLUIEquipQuickTransferPanelView.content)
  32. end
  33. return KLUIEquipQuickTransferPanelView