KLCodePanelView.lua 494 B

1234567891011121314
  1. ---@class KLCodePanelView:UIKmlLuaViewBase
  2. ---@field CodeInput UIKmlLuaControl
  3. ---@field exchangeBtn UIKmlLuaControl
  4. local KLCodePanelView = {}
  5. setmetatable(KLCodePanelView,UIKmlLuaViewBase)
  6. local kmlPath = 'dev/ui/Setting/Panel/KLCode/KLCodePanelKml'
  7. KLCodePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  8. ---@param parent UIKmlLuaControl
  9. function KLCodePanelView:Init(parent)
  10. self:InitRoot(parent,kmlPath,KLCodePanelView.content)
  11. end
  12. return KLCodePanelView