12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- ---@class KLEfficiencyNewPanelView:UIKmlLuaViewBase
- ---@field Bg UIKmlLuaControl
- ---@field Title_Image UIKmlLuaControl
- ---@field bg1 UIKmlLuaControl
- ---@field bg2 UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field togglegroup8 UIKmlLuaControl
- ---@field scrollview4 UIKmlLuaControl
- ---@field layout5 UIKmlLuaControl
- ---@field datalist UIKmlLuaControl
- ---@field root_content UIKmlLuaControl
- ---@field Multiplier UIKmlLuaControl
- ---@field left UIKmlLuaControl
- ---@field panel9 UIKmlLuaControl
- ---@field img10 UIKmlLuaControl
- ---@field img11 UIKmlLuaControl
- ---@field text_left_num UIKmlLuaControl
- ---@field img13 UIKmlLuaControl
- ---@field btn_left UIKmlLuaControl
- ---@field img_state_left UIKmlLuaControl
- ---@field model_left UIKmlLuaControl
- ---@field up UIKmlLuaControl
- ---@field panel14 UIKmlLuaControl
- ---@field img15 UIKmlLuaControl
- ---@field img16 UIKmlLuaControl
- ---@field text_up_num UIKmlLuaControl
- ---@field img18 UIKmlLuaControl
- ---@field btn_up UIKmlLuaControl
- ---@field img_state_up UIKmlLuaControl
- ---@field model_up UIKmlLuaControl
- ---@field down UIKmlLuaControl
- ---@field panel19 UIKmlLuaControl
- ---@field img20 UIKmlLuaControl
- ---@field img21 UIKmlLuaControl
- ---@field text_down_num UIKmlLuaControl
- ---@field img23 UIKmlLuaControl
- ---@field btn_down UIKmlLuaControl
- ---@field img_state_down UIKmlLuaControl
- ---@field model_down UIKmlLuaControl
- ---@field Single UIKmlLuaControl
- ---@field img_info UIKmlLuaControl
- ---@field btn_go UIKmlLuaControl
- ---@field Single_active UIKmlLuaControl
- ---@field item_reward UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field text_limit UIKmlLuaControl
- ---@field item_reward_red UIKmlLuaControl
- local KLEfficiencyNewPanelView = {}
- setmetatable(KLEfficiencyNewPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Efficiency/Panel/KLEfficiencyNew/KLEfficiencyNewPanelKml'
- KLEfficiencyNewPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEfficiencyNewPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEfficiencyNewPanelView.content)
- end
- return KLEfficiencyNewPanelView
|