1234567891011121314151617181920212223242526272829303132333435 |
- ---@class KLUIEquipQuickTransferPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field bgImg UIKmlLuaControl
- ---@field img_78 UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field btn_source_item UIKmlLuaControl
- ---@field panel_equip_source UIKmlLuaControl
- ---@field img_82 UIKmlLuaControl
- ---@field btn_target_item UIKmlLuaControl
- ---@field panel_equip_target UIKmlLuaControl
- ---@field img_85 UIKmlLuaControl
- ---@field tipContent UIKmlLuaControl
- ---@field layout_87 UIKmlLuaControl
- ---@field tips1 UIKmlLuaControl
- ---@field tips2 UIKmlLuaControl
- ---@field tips3 UIKmlLuaControl
- ---@field text_91 UIKmlLuaControl
- ---@field img_92 UIKmlLuaControl
- ---@field item_cost UIKmlLuaControl
- ---@field text_transfer_cost_name UIKmlLuaControl
- ---@field img_95 UIKmlLuaControl
- ---@field text_transfer_cost UIKmlLuaControl
- ---@field btn_cancel UIKmlLuaControl
- ---@field btn_transfer UIKmlLuaControl
- local KLUIEquipQuickTransferPanelView = {}
- setmetatable(KLUIEquipQuickTransferPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Equip/Panel/KLUIEquipQuickTransfer/KLUIEquipQuickTransferPanelKml'
- KLUIEquipQuickTransferPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIEquipQuickTransferPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIEquipQuickTransferPanelView.content)
- end
- return KLUIEquipQuickTransferPanelView
|