1234567891011121314151617181920212223 |
- ---@class KLResetPointItemView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field bgImg UIKmlLuaControl
- ---@field img_679 UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field layout_681 UIKmlLuaControl
- ---@field text_682 UIKmlLuaControl
- ---@field cost_item UIKmlLuaControl
- ---@field item_click_img UIKmlLuaControl
- ---@field layout_684 UIKmlLuaControl
- ---@field common_lf_btn UIKmlLuaControl
- ---@field common_rt_btn UIKmlLuaControl
- local KLResetPointItemView = {}
- setmetatable(KLResetPointItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Role/Item/KLResetPoint/KLResetPointItemKml'
- KLResetPointItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLResetPointItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLResetPointItemView.content)
- end
- return KLResetPointItemView
|