12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ---@class KLUIEquipTransferPanelView:UIKmlLuaViewBase
- ---@field equip_bg UIKmlLuaControl
- ---@field panel_main UIKmlLuaControl
- ---@field title_transfer UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field img_36 UIKmlLuaControl
- ---@field panel_equip_source UIKmlLuaControl
- ---@field panel_equip_source_item UIKmlLuaControl
- ---@field img_equip_source_select UIKmlLuaControl
- ---@field img_equip_source_add UIKmlLuaControl
- ---@field img_41 UIKmlLuaControl
- ---@field btn_equip_source_takeoff UIKmlLuaControl
- ---@field panel_equip_target UIKmlLuaControl
- ---@field panel_equip_target_item UIKmlLuaControl
- ---@field img_equip_target_select UIKmlLuaControl
- ---@field img_equip_target_add UIKmlLuaControl
- ---@field img_equip_target_select_text UIKmlLuaControl
- ---@field btn_equip_target_takeoff UIKmlLuaControl
- ---@field img_49 UIKmlLuaControl
- ---@field img_50 UIKmlLuaControl
- ---@field toggle_transfer_strengthen UIKmlLuaControl
- ---@field img_transfer_strengthen UIKmlLuaControl
- ---@field toggle_transfer_append UIKmlLuaControl
- ---@field img_transfer_append UIKmlLuaControl
- ---@field panel_55 UIKmlLuaControl
- ---@field img_56 UIKmlLuaControl
- ---@field text_57 UIKmlLuaControl
- ---@field cost_panel UIKmlLuaControl
- ---@field item_cost UIKmlLuaControl
- ---@field text_cost_item_name UIKmlLuaControl
- ---@field text_item_bag_count UIKmlLuaControl
- ---@field success_anim UIKmlLuaControl
- ---@field successText UIKmlLuaControl
- ---@field btn_transfer UIKmlLuaControl
- ---@field text_reborn_tips UIKmlLuaControl
- local KLUIEquipTransferPanelView = {}
- setmetatable(KLUIEquipTransferPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Equip/Panel/KLUIEquipTransfer/KLUIEquipTransferPanelKml'
- KLUIEquipTransferPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIEquipTransferPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIEquipTransferPanelView.content)
- end
- return KLUIEquipTransferPanelView
|