1234567891011121314151617181920212223242526272829 |
- ---@class KLUnionCampaignPanelView:UIKmlLuaViewBase
- ---@field BackGround UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field TitleImage UIKmlLuaControl
- ---@field txtCountDown UIKmlLuaControl
- ---@field btnClose UIKmlLuaControl
- ---@field btnRefuse UIKmlLuaControl
- ---@field text12 UIKmlLuaControl
- ---@field itemRefuse UIKmlLuaControl
- ---@field txtRefuse UIKmlLuaControl
- ---@field txtDisagreeNum UIKmlLuaControl
- ---@field btnAgree UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field itemAgree UIKmlLuaControl
- ---@field txtAgree UIKmlLuaControl
- ---@field txtAgreeNum UIKmlLuaControl
- ---@field txtName UIKmlLuaControl
- ---@field txtDesc UIKmlLuaControl
- local KLUnionCampaignPanelView = {}
- setmetatable(KLUnionCampaignPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Union/Panel/KLUnionCampaign/KLUnionCampaignPanelKml'
- KLUnionCampaignPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionCampaignPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionCampaignPanelView.content)
- end
- return KLUnionCampaignPanelView
|