KLShapeShiftCardShopPanelView.lua 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. ---@class KLShapeShiftCardShopPanelView:UIKmlLuaViewBase
  2. ---@field scrollview_panel UIKmlLuaControl
  3. ---@field layout UIKmlLuaControl
  4. ---@field img3 UIKmlLuaControl
  5. ---@field text5 UIKmlLuaControl
  6. ---@field osa_card_list_1 UIKmlLuaControl
  7. ---@field datalist_1 UIKmlLuaControl
  8. ---@field img6 UIKmlLuaControl
  9. ---@field text7 UIKmlLuaControl
  10. ---@field osa_card_list_2 UIKmlLuaControl
  11. ---@field datalist_2 UIKmlLuaControl
  12. ---@field panel1 UIKmlLuaControl
  13. ---@field img4 UIKmlLuaControl
  14. ---@field item_tokens_1 UIKmlLuaControl
  15. ---@field text_tokens_1_num UIKmlLuaControl
  16. ---@field btn_tokens_1_add UIKmlLuaControl
  17. ---@field img9 UIKmlLuaControl
  18. ---@field item_tokens_2 UIKmlLuaControl
  19. ---@field text_tokens_2_num UIKmlLuaControl
  20. ---@field btn_tokens_2_add UIKmlLuaControl
  21. local KLShapeShiftCardShopPanelView = {}
  22. setmetatable(KLShapeShiftCardShopPanelView,UIKmlLuaViewBase)
  23. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardShop/KLShapeShiftCardShopPanelKml'
  24. KLShapeShiftCardShopPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  25. ---@param parent UIKmlLuaControl
  26. function KLShapeShiftCardShopPanelView:Init(parent)
  27. self:InitRoot(parent,kmlPath,KLShapeShiftCardShopPanelView.content)
  28. end
  29. return KLShapeShiftCardShopPanelView