KLUIForgingMasterPanelView.lua 990 B

12345678910111213141516171819202122232425
  1. ---@class KLUIForgingMasterPanelView:UIKmlLuaViewBase
  2. ---@field btn_close UIKmlLuaControl
  3. ---@field img_bg UIKmlLuaControl
  4. ---@field img_13 UIKmlLuaControl
  5. ---@field img_14 UIKmlLuaControl
  6. ---@field text_title UIKmlLuaControl
  7. ---@field text_part_name UIKmlLuaControl
  8. ---@field text_tips UIKmlLuaControl
  9. ---@field now_level UIKmlLuaControl
  10. ---@field now_attr UIKmlLuaControl
  11. ---@field now_bonus UIKmlLuaControl
  12. ---@field next_level UIKmlLuaControl
  13. ---@field next_attr UIKmlLuaControl
  14. ---@field next_bonus UIKmlLuaControl
  15. local KLUIForgingMasterPanelView = {}
  16. setmetatable(KLUIForgingMasterPanelView,UIKmlLuaViewBase)
  17. local kmlPath = 'dev/outui/Equip/Panel/KLUIForgingMaster/KLUIForgingMasterPanelKml'
  18. KLUIForgingMasterPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  19. ---@param parent UIKmlLuaControl
  20. function KLUIForgingMasterPanelView:Init(parent)
  21. self:InitRoot(parent,kmlPath,KLUIForgingMasterPanelView.content)
  22. end
  23. return KLUIForgingMasterPanelView