1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ---@class KLBigMapPanelView:UIKmlLuaViewBase
- ---@field img_21 UIKmlLuaControl
- ---@field img_drag UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field img_24 UIKmlLuaControl
- ---@field TransferScrollView UIKmlLuaControl
- ---@field TransferList UIKmlLuaControl
- ---@field img_27 UIKmlLuaControl
- ---@field layout_28 UIKmlLuaControl
- ---@field btn_npc_transfer1 UIKmlLuaControl
- ---@field label_npc_transfer1 UIKmlLuaControl
- ---@field btn_npc_shop1 UIKmlLuaControl
- ---@field label_npc_shop1 UIKmlLuaControl
- ---@field right_area UIKmlLuaControl
- ---@field panel_scene UIKmlLuaControl
- ---@field img_scene UIKmlLuaControl
- ---@field icon_parent UIKmlLuaControl
- ---@field img_player_icon UIKmlLuaControl
- ---@field text_map_name UIKmlLuaControl
- ---@field btn_map_zoom_out UIKmlLuaControl
- ---@field img_17 UIKmlLuaControl
- ---@field btn_map_zoom_in UIKmlLuaControl
- ---@field slider_map_size UIKmlLuaControl
- ---@field Delivery_Item UIKmlLuaControl
- ---@field Delivery_Item_Tips UIKmlLuaControl
- ---@field FixedPoint UIKmlLuaControl
- ---@field FixedPointItem UIKmlLuaControl
- ---@field FixedPointText UIKmlLuaControl
- ---@field FixedPointToggle UIKmlLuaControl
- ---@field FixedPointItemCount UIKmlLuaControl
- local KLBigMapPanelView = {}
- setmetatable(KLBigMapPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Map/Panel/KLBigMap/KLBigMapPanelKml'
- KLBigMapPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLBigMapPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLBigMapPanelView.content)
- end
- return KLBigMapPanelView
|