miduo_client/Assets/ManagedResources/~Lua/Modules/Update/DownLoadingPanel.lua

46 lines
926 B
Lua
Raw Normal View History

2020-08-06 17:52:32 +08:00
require("Base/BasePanel")
2020-05-09 13:31:21 +08:00
DownLoadingPanel = Inherit(BasePanel)
local this = DownLoadingPanel
--初始化组件(用于子类重写)
function this:InitComponent()
this.tipText = self:GetComponent("Text","Panel/LoadingSlider/Tip");
this.daXiaoTxt = self:GetComponent("Text","Panel/LoadingSlider/DaXiao");
this.slider = self:GetComponent("Slider","Panel/LoadingSlider/LoadingSlider");
end
--绑定事件(用于子类重写)
function this:BindEvent()
end
--添加事件监听(用于子类重写)
function this:AddListener()
end
--移除事件监听(用于子类重写)
function this:RemoveListener()
end
--界面打开时调用(用于子类重写)
function this:OnOpen(...)
end
function this:OnShow()
end
--界面关闭时调用(用于子类重写)
function this:OnClose()
end
--界面销毁时调用(用于子类重写)
function this:OnDestroy()
end
2020-06-23 18:36:24 +08:00
return DownLoadingPanel