123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- ---@class KLEquipOverlayPanelView:UIKmlLuaViewBase
- ---@field equip_bg UIKmlLuaControl
- ---@field OverlayPanel UIKmlLuaControl
- ---@field overlay_title UIKmlLuaControl
- ---@field closePanel UIKmlLuaControl
- ---@field helptip UIKmlLuaControl
- ---@field img_10 UIKmlLuaControl
- ---@field zhuEquip UIKmlLuaControl
- ---@field zhu_overlay_itembg UIKmlLuaControl
- ---@field title_zhuequip UIKmlLuaControl
- ---@field zhu_item UIKmlLuaControl
- ---@field zhu_bg_overlay_select UIKmlLuaControl
- ---@field zhu_add UIKmlLuaControl
- ---@field zhu_click UIKmlLuaControl
- ---@field img_19 UIKmlLuaControl
- ---@field fuEquip UIKmlLuaControl
- ---@field fu_overlay_itembg UIKmlLuaControl
- ---@field title_fuequip UIKmlLuaControl
- ---@field fu_item UIKmlLuaControl
- ---@field fu_bg_overlay_select UIKmlLuaControl
- ---@field fu_add UIKmlLuaControl
- ---@field fu_click UIKmlLuaControl
- ---@field item_attr_panel UIKmlLuaControl
- ---@field Luckystone UIKmlLuaControl
- ---@field LuckystoneCount UIKmlLuaControl
- ---@field LuckyClick UIKmlLuaControl
- ---@field Luckystonenull UIKmlLuaControl
- ---@field successIcon UIKmlLuaControl
- ---@field success_rate1 UIKmlLuaControl
- ---@field success_rate2 UIKmlLuaControl
- ---@field img_34 UIKmlLuaControl
- ---@field text_35 UIKmlLuaControl
- ---@field scroll_entry UIKmlLuaControl
- ---@field grid_entry UIKmlLuaControl
- ---@field entry_list UIKmlLuaControl
- ---@field text_46 UIKmlLuaControl
- ---@field img_47 UIKmlLuaControl
- ---@field cost_item UIKmlLuaControl
- ---@field cost_count UIKmlLuaControl
- ---@field cost_btn UIKmlLuaControl
- ---@field Overlay_btn UIKmlLuaControl
- ---@field Add_CostItem_panel UIKmlLuaControl
- ---@field CostItem_mask UIKmlLuaControl
- ---@field CostItem_BG UIKmlLuaControl
- ---@field costItem_successIcon UIKmlLuaControl
- ---@field rate_text1 UIKmlLuaControl
- ---@field rate_text2 UIKmlLuaControl
- ---@field rate_item_add UIKmlLuaControl
- ---@field rate_item_slider UIKmlLuaControl
- ---@field rate_item_sub UIKmlLuaControl
- ---@field rate_CostItem UIKmlLuaControl
- ---@field costItem_name UIKmlLuaControl
- ---@field total_CostItem UIKmlLuaControl
- ---@field use_costItem UIKmlLuaControl
- ---@field rate_sure_btn UIKmlLuaControl
- ---@field text_63 UIKmlLuaControl
- ---@field result_panel UIKmlLuaControl
- ---@field result_success_img UIKmlLuaControl
- ---@field result_success_text UIKmlLuaControl
- ---@field result_fail_img UIKmlLuaControl
- ---@field result_fail_text UIKmlLuaControl
- local KLEquipOverlayPanelView = {}
- setmetatable(KLEquipOverlayPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Equip/Panel/KLEquipOverlay/KLEquipOverlayPanelKml'
- KLEquipOverlayPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipOverlayPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipOverlayPanelView.content)
- end
- return KLEquipOverlayPanelView
|