12345678910111213 |
- ---@class KLMonthCardBuyTipPanelView:UIKmlLuaViewBase
- ---@field btn_close UIKmlLuaControl
- local KLMonthCardBuyTipPanelView = {}
- setmetatable(KLMonthCardBuyTipPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Panel/KLMonthCardBuyTip/KLMonthCardBuyTipPanelKml'
- KLMonthCardBuyTipPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMonthCardBuyTipPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMonthCardBuyTipPanelView.content)
- end
- return KLMonthCardBuyTipPanelView
|