12345678910111213141516171819 |
- ---@class KLUIMonthCardDescTipsPanelView:UIKmlLuaViewBase
- ---@field BG UIKmlLuaControl
- ---@field bgBth UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- ---@field scrollview8 UIKmlLuaControl
- ---@field layout9 UIKmlLuaControl
- ---@field contentText UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- local KLUIMonthCardDescTipsPanelView = {}
- setmetatable(KLUIMonthCardDescTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MonthCard/Panel/KLUIMonthCardDescTips/KLUIMonthCardDescTipsPanelKml'
- KLUIMonthCardDescTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIMonthCardDescTipsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIMonthCardDescTipsPanelView.content)
- end
- return KLUIMonthCardDescTipsPanelView
|