12345678910111213 |
- ---@class KLTipBtntemView:UIKmlLuaViewBase
- ---@field button_id UIKmlLuaControl
- local KLTipBtntemView = {}
- setmetatable(KLTipBtntemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Tips/Item/KLUITips/KLTipBtntemKml'
- KLTipBtntemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTipBtntemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTipBtntemView.content)
- end
- return KLTipBtntemView
|