KLUIMonthCardPanelView.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---@class KLUIMonthCardPanelView:UIKmlLuaViewBase
  2. ---@field img1 UIKmlLuaControl
  3. ---@field UI UIKmlLuaControl
  4. ---@field title UIKmlLuaControl
  5. ---@field item_model UIKmlLuaControl
  6. ---@field GoTripleEarningBtn UIKmlLuaControl
  7. ---@field img3 UIKmlLuaControl
  8. ---@field img4 UIKmlLuaControl
  9. ---@field TimeText UIKmlLuaControl
  10. ---@field img6 UIKmlLuaControl
  11. ---@field gridview UIKmlLuaControl
  12. ---@field chat_Btn UIKmlLuaControl
  13. ---@field tradeLine_Btn UIKmlLuaControl
  14. ---@field TripleEarningsBtn UIKmlLuaControl
  15. ---@field auto_pickUpBtn UIKmlLuaControl
  16. ---@field auto_recyBtn UIKmlLuaControl
  17. ---@field ex_privilegeBtn UIKmlLuaControl
  18. ---@field text1 UIKmlLuaControl
  19. ---@field inputText UIKmlLuaControl
  20. ---@field Reduce_btn UIKmlLuaControl
  21. ---@field Add_Btn UIKmlLuaControl
  22. ---@field Buy_countText UIKmlLuaControl
  23. ---@field monthCardBuy_Btn UIKmlLuaControl
  24. ---@field daliyCardBuy_btn UIKmlLuaControl
  25. ---@field text2 UIKmlLuaControl
  26. ---@field LimitCount UIKmlLuaControl
  27. ---@field Help_Btn UIKmlLuaControl
  28. ---@field CloseBtn UIKmlLuaControl
  29. ---@field text_cost_tips UIKmlLuaControl
  30. local KLUIMonthCardPanelView = {}
  31. setmetatable(KLUIMonthCardPanelView,UIKmlLuaViewBase)
  32. local kmlPath = 'dev/outui/MonthCard/Panel/KLUIMonthCard/KLUIMonthCardPanelKml'
  33. KLUIMonthCardPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  34. ---@param parent UIKmlLuaControl
  35. function KLUIMonthCardPanelView:Init(parent)
  36. self:InitRoot(parent,kmlPath,KLUIMonthCardPanelView.content)
  37. end
  38. return KLUIMonthCardPanelView