KLUIMonthCardDescTipsPanelView.lua 802 B

12345678910111213141516171819
  1. ---@class KLUIMonthCardDescTipsPanelView:UIKmlLuaViewBase
  2. ---@field BG UIKmlLuaControl
  3. ---@field bgBth UIKmlLuaControl
  4. ---@field CloseBtn UIKmlLuaControl
  5. ---@field scrollview8 UIKmlLuaControl
  6. ---@field layout9 UIKmlLuaControl
  7. ---@field contentText UIKmlLuaControl
  8. ---@field text1 UIKmlLuaControl
  9. local KLUIMonthCardDescTipsPanelView = {}
  10. setmetatable(KLUIMonthCardDescTipsPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/MonthCard/Panel/KLUIMonthCardDescTips/KLUIMonthCardDescTipsPanelKml'
  12. KLUIMonthCardDescTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLUIMonthCardDescTipsPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLUIMonthCardDescTipsPanelView.content)
  16. end
  17. return KLUIMonthCardDescTipsPanelView