KLUIForgeGroupPanelView.lua 934 B

1234567891011121314151617181920212223
  1. ---@class KLUIForgeGroupPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field MaskCloseButton UIKmlLuaControl
  4. ---@field toggleGroup UIKmlLuaControl
  5. ---@field strengthToggle UIKmlLuaControl
  6. ---@field appendToggle UIKmlLuaControl
  7. ---@field decomposeToggle UIKmlLuaControl
  8. ---@field transferToggle UIKmlLuaControl
  9. ---@field overlayToggle UIKmlLuaControl
  10. ---@field JewelryToggle UIKmlLuaControl
  11. ---@field RegenerateToggle UIKmlLuaControl
  12. ---@field InlayToggle UIKmlLuaControl
  13. local KLUIForgeGroupPanelView = {}
  14. setmetatable(KLUIForgeGroupPanelView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/ui/UIForgeGroup/Panel/KLUIForgeGroup/KLUIForgeGroupPanelKml'
  16. KLUIForgeGroupPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLUIForgeGroupPanelView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLUIForgeGroupPanelView.content)
  20. end
  21. return KLUIForgeGroupPanelView