123456789101112131415161718192021 |
- ---@class KLRoleReNamePanelView:UIKmlLuaViewBase
- ---@field title UIKmlLuaControl
- ---@field input UIKmlLuaControl
- ---@field des UIKmlLuaControl
- ---@field cancelBtn UIKmlLuaControl
- ---@field okBtn UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field costRoot UIKmlLuaControl
- ---@field costCount UIKmlLuaControl
- ---@field costItem UIKmlLuaControl
- local KLRoleReNamePanelView = {}
- setmetatable(KLRoleReNamePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ReName/Panel/KLRoleReName/KLRoleReNamePanelKml'
- KLRoleReNamePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRoleReNamePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRoleReNamePanelView.content)
- end
- return KLRoleReNamePanelView
|