KLUnionLeaderOperatePanelView.lua 1.1 KB

1234567891011121314151617181920212223242526272829
  1. ---@class KLUnionLeaderOperatePanelView:UIKmlLuaViewBase
  2. ---@field BtnMask UIKmlLuaControl
  3. ---@field Bg UIKmlLuaControl
  4. ---@field txtTitle UIKmlLuaControl
  5. ---@field ImgTitle_left UIKmlLuaControl
  6. ---@field ImgTitle_right UIKmlLuaControl
  7. ---@field btnConfirm UIKmlLuaControl
  8. ---@field btnCancel UIKmlLuaControl
  9. ---@field BgCost UIKmlLuaControl
  10. ---@field text14 UIKmlLuaControl
  11. ---@field textCost UIKmlLuaControl
  12. ---@field item17 UIKmlLuaControl
  13. ---@field txtDesc UIKmlLuaControl
  14. ---@field txtCondTitle UIKmlLuaControl
  15. ---@field txtCond1 UIKmlLuaControl
  16. ---@field img21 UIKmlLuaControl
  17. ---@field txtCond2 UIKmlLuaControl
  18. ---@field img23 UIKmlLuaControl
  19. local KLUnionLeaderOperatePanelView = {}
  20. setmetatable(KLUnionLeaderOperatePanelView,UIKmlLuaViewBase)
  21. local kmlPath = 'dev/outui/Union/Panel/KLUnionLeaderOperate/KLUnionLeaderOperatePanelKml'
  22. KLUnionLeaderOperatePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  23. ---@param parent UIKmlLuaControl
  24. function KLUnionLeaderOperatePanelView:Init(parent)
  25. self:InitRoot(parent,kmlPath,KLUnionLeaderOperatePanelView.content)
  26. end
  27. return KLUnionLeaderOperatePanelView