KLGemInlayPanelView.lua 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---@class KLGemInlayPanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field gemAddIcon UIKmlLuaControl
  5. ---@field arrContent UIKmlLuaControl
  6. ---@field gridview3 UIKmlLuaControl
  7. ---@field datalist_gemAttrs UIKmlLuaControl
  8. ---@field NoAttribute UIKmlLuaControl
  9. ---@field gemAddParentTitle UIKmlLuaControl
  10. ---@field scrollview15 UIKmlLuaControl
  11. ---@field gridview16 UIKmlLuaControl
  12. ---@field datalist_AllGemAttrs UIKmlLuaControl
  13. ---@field Title UIKmlLuaControl
  14. ---@field togglegroup3 UIKmlLuaControl
  15. ---@field BGInner_2 UIKmlLuaControl
  16. ---@field schemeToggle1 UIKmlLuaControl
  17. ---@field schemeTxt1 UIKmlLuaControl
  18. ---@field redPointImg1 UIKmlLuaControl
  19. ---@field schemeToggle2 UIKmlLuaControl
  20. ---@field schemeTxt2 UIKmlLuaControl
  21. ---@field redPointImg2 UIKmlLuaControl
  22. ---@field CloseButton UIKmlLuaControl
  23. ---@field SlateCellParentImg UIKmlLuaControl
  24. ---@field panel5 UIKmlLuaControl
  25. ---@field SlateAddImg UIKmlLuaControl
  26. ---@field SlateCell UIKmlLuaControl
  27. ---@field SlateImg UIKmlLuaControl
  28. ---@field slateLevelTxt UIKmlLuaControl
  29. ---@field ToggleGroupSource UIKmlLuaControl
  30. ---@field gemBtn UIKmlLuaControl
  31. ---@field GemCellParentImg UIKmlLuaControl
  32. ---@field GemCell1Parent UIKmlLuaControl
  33. ---@field SelectImg1 UIKmlLuaControl
  34. ---@field AddImg1 UIKmlLuaControl
  35. ---@field GemCell1 UIKmlLuaControl
  36. ---@field GemCellImg1 UIKmlLuaControl
  37. ---@field gemLevelTxt1 UIKmlLuaControl
  38. ---@field GemCell2Parent UIKmlLuaControl
  39. ---@field SelectImg2 UIKmlLuaControl
  40. ---@field AddImg2 UIKmlLuaControl
  41. ---@field GemCell2 UIKmlLuaControl
  42. ---@field GemCellImg2 UIKmlLuaControl
  43. ---@field gemLevelTxt2 UIKmlLuaControl
  44. ---@field GemCell3Parent UIKmlLuaControl
  45. ---@field SelectImg3 UIKmlLuaControl
  46. ---@field AddImg3 UIKmlLuaControl
  47. ---@field GemCell3 UIKmlLuaControl
  48. ---@field GemCellImg3 UIKmlLuaControl
  49. ---@field gemLevelTxt3 UIKmlLuaControl
  50. ---@field panel3 UIKmlLuaControl
  51. ---@field equipbg UIKmlLuaControl
  52. ---@field scroll_text_template UIKmlLuaControl
  53. ---@field KmlScrollTextTemplate UIKmlLuaControl
  54. ---@field equipName UIKmlLuaControl
  55. ---@field zhu_item UIKmlLuaControl
  56. ---@field zhu_add UIKmlLuaControl
  57. ---@field zhu_click UIKmlLuaControl
  58. ---@field AllGemAddParent_1 UIKmlLuaControl
  59. ---@field AllGemAddTxtTitle UIKmlLuaControl
  60. ---@field HelpBtn UIKmlLuaControl
  61. local KLGemInlayPanelView = {}
  62. setmetatable(KLGemInlayPanelView,UIKmlLuaViewBase)
  63. local kmlPath = 'dev/outui/Equip/Panel/KLGemInlay/KLGemInlayPanelKml'
  64. KLGemInlayPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  65. ---@param parent UIKmlLuaControl
  66. function KLGemInlayPanelView:Init(parent)
  67. self:InitRoot(parent,kmlPath,KLGemInlayPanelView.content)
  68. end
  69. return KLGemInlayPanelView