KLUISynthesisPanelView.lua 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ---@class KLUISynthesisPanelView:UIKmlLuaViewBase
  2. ---@field Mask UIKmlLuaControl
  3. ---@field Right UIKmlLuaControl
  4. ---@field title UIKmlLuaControl
  5. ---@field closeButton UIKmlLuaControl
  6. ---@field ModelBG UIKmlLuaControl
  7. ---@field Model UIKmlLuaControl
  8. ---@field ModelName UIKmlLuaControl
  9. ---@field ModelDescription UIKmlLuaControl
  10. ---@field PreviewButton UIKmlLuaControl
  11. ---@field MaterialTitle UIKmlLuaControl
  12. ---@field MaterialScrollview UIKmlLuaControl
  13. ---@field gridview7 UIKmlLuaControl
  14. ---@field MaterialDataList UIKmlLuaControl
  15. ---@field SuccessRateText UIKmlLuaControl
  16. ---@field MaxCountText UIKmlLuaControl
  17. ---@field SynthesisButton UIKmlLuaControl
  18. ---@field SynthesisButton_Red UIKmlLuaControl
  19. ---@field SelectCount UIKmlLuaControl
  20. ---@field text1 UIKmlLuaControl
  21. ---@field BtnMinus UIKmlLuaControl
  22. ---@field Input UIKmlLuaControl
  23. ---@field BtnAdd UIKmlLuaControl
  24. ---@field Left UIKmlLuaControl
  25. ---@field title2 UIKmlLuaControl
  26. ---@field LeftButtonScrollview UIKmlLuaControl
  27. ---@field layout2 UIKmlLuaControl
  28. ---@field LeftButtonDataList UIKmlLuaControl
  29. ---@field panel1 UIKmlLuaControl
  30. ---@field Preview UIKmlLuaControl
  31. ---@field img2 UIKmlLuaControl
  32. ---@field scrollview3 UIKmlLuaControl
  33. ---@field layout4 UIKmlLuaControl
  34. ---@field PreviewDataList UIKmlLuaControl
  35. ---@field PreviewCloseButton UIKmlLuaControl
  36. ---@field Special UIKmlLuaControl
  37. ---@field SpecialCloseButton UIKmlLuaControl
  38. ---@field SpecialBG UIKmlLuaControl
  39. ---@field SelectSpecialButton UIKmlLuaControl
  40. ---@field SpecialTitleText UIKmlLuaControl
  41. ---@field SpecialItemScrollview UIKmlLuaControl
  42. ---@field gridview20 UIKmlLuaControl
  43. ---@field SpecialItemDataList UIKmlLuaControl
  44. local KLUISynthesisPanelView = {}
  45. setmetatable(KLUISynthesisPanelView,UIKmlLuaViewBase)
  46. local kmlPath = 'dev/outui/UISynthesis/Panel/KLUISynthesis/KLUISynthesisPanelKml'
  47. KLUISynthesisPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  48. ---@param parent UIKmlLuaControl
  49. function KLUISynthesisPanelView:Init(parent)
  50. self:InitRoot(parent,kmlPath,KLUISynthesisPanelView.content)
  51. end
  52. return KLUISynthesisPanelView