1234567891011121314151617181920212223242526 |
- ---@class KLUIMasterTalentCareerSwitchPanelView:UIKmlLuaViewBase
- ---@field MaskCloseButton UIKmlLuaControl
- ---@field BG UIKmlLuaControl
- ---@field Left UIKmlLuaControl
- ---@field img6 UIKmlLuaControl
- ---@field LeftText UIKmlLuaControl
- ---@field LeftConsume UIKmlLuaControl
- ---@field ConsumeItem UIKmlLuaControl
- ---@field ConsumeText UIKmlLuaControl
- ---@field LeftButton UIKmlLuaControl
- ---@field Right UIKmlLuaControl
- ---@field img7 UIKmlLuaControl
- ---@field RightButton UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field Title UIKmlLuaControl
- local KLUIMasterTalentCareerSwitchPanelView = {}
- setmetatable(KLUIMasterTalentCareerSwitchPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MasterTalent/Panel/KLUIMasterTalentCareerSwitch/KLUIMasterTalentCareerSwitchPanelKml'
- KLUIMasterTalentCareerSwitchPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIMasterTalentCareerSwitchPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIMasterTalentCareerSwitchPanelView.content)
- end
- return KLUIMasterTalentCareerSwitchPanelView
|