KLRoleReNamePanelView.lua 783 B

123456789101112131415161718192021
  1. ---@class KLRoleReNamePanelView:UIKmlLuaViewBase
  2. ---@field title UIKmlLuaControl
  3. ---@field input UIKmlLuaControl
  4. ---@field des UIKmlLuaControl
  5. ---@field cancelBtn UIKmlLuaControl
  6. ---@field okBtn UIKmlLuaControl
  7. ---@field closeBtn UIKmlLuaControl
  8. ---@field costRoot UIKmlLuaControl
  9. ---@field costCount UIKmlLuaControl
  10. ---@field costItem UIKmlLuaControl
  11. local KLRoleReNamePanelView = {}
  12. setmetatable(KLRoleReNamePanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/outui/ReName/Panel/KLRoleReName/KLRoleReNamePanelKml'
  14. KLRoleReNamePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLRoleReNamePanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLRoleReNamePanelView.content)
  18. end
  19. return KLRoleReNamePanelView