KLGrailItemView.lua 825 B

1234567891011121314151617181920212223
  1. ---@class KLGrailItemView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field xie_btn UIKmlLuaControl
  4. ---@field bg UIKmlLuaControl
  5. ---@field scroll_text_template UIKmlLuaControl
  6. ---@field KmlScrollTextTemplate UIKmlLuaControl
  7. ---@field txt_item_name UIKmlLuaControl
  8. ---@field add UIKmlLuaControl
  9. ---@field select UIKmlLuaControl
  10. ---@field gray UIKmlLuaControl
  11. ---@field img_lock UIKmlLuaControl
  12. ---@field img_red UIKmlLuaControl
  13. local KLGrailItemView = {}
  14. setmetatable(KLGrailItemView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/outui/Archangel/Item/KLGrail/KLGrailItemKml'
  16. KLGrailItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLGrailItemView:Init(parent)
  19. self:InitRoot(parent, kmlPath, KLGrailItemView.content)
  20. end
  21. return KLGrailItemView