KLDragonSoulComboPanelView.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---@class KLDragonSoulComboPanelView:UIKmlLuaViewBase
  2. ---@field img_11 UIKmlLuaControl
  3. ---@field img_13 UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. ---@field panel_upgrade UIKmlLuaControl
  6. ---@field panel_15 UIKmlLuaControl
  7. ---@field img_left_unActive UIKmlLuaControl
  8. ---@field img_left_active UIKmlLuaControl
  9. ---@field text_left_lv UIKmlLuaControl
  10. ---@field img_18 UIKmlLuaControl
  11. ---@field text_19 UIKmlLuaControl
  12. ---@field text_left_detail UIKmlLuaControl
  13. ---@field panel_21 UIKmlLuaControl
  14. ---@field img_22 UIKmlLuaControl
  15. ---@field text_right_lv UIKmlLuaControl
  16. ---@field img_24 UIKmlLuaControl
  17. ---@field text_25 UIKmlLuaControl
  18. ---@field text_right_detail UIKmlLuaControl
  19. ---@field panel_27 UIKmlLuaControl
  20. ---@field img_soul_type UIKmlLuaControl
  21. ---@field img_29 UIKmlLuaControl
  22. ---@field layout UIKmlLuaControl
  23. ---@field datalist_cost UIKmlLuaControl
  24. ---@field role UIKmlLuaControl
  25. ---@field role_effect UIKmlLuaControl
  26. ---@field btn_upgrade UIKmlLuaControl
  27. ---@field btn_max UIKmlLuaControl
  28. ---@field btn_back UIKmlLuaControl
  29. ---@field panel_max UIKmlLuaControl
  30. ---@field img_37 UIKmlLuaControl
  31. ---@field img2 UIKmlLuaControl
  32. ---@field text3 UIKmlLuaControl
  33. ---@field text_max_detail UIKmlLuaControl
  34. ---@field role_max UIKmlLuaControl
  35. ---@field role_effect_max UIKmlLuaControl
  36. ---@field strength_ok UIKmlLuaControl
  37. local KLDragonSoulComboPanelView = {}
  38. setmetatable(KLDragonSoulComboPanelView,UIKmlLuaViewBase)
  39. local kmlPath = 'dev/outui/DragonSoulCombo/Panel/KLDragonSoulCombo/KLDragonSoulComboPanelKml'
  40. KLDragonSoulComboPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  41. ---@param parent UIKmlLuaControl
  42. function KLDragonSoulComboPanelView:Init(parent)
  43. self:InitRoot(parent,kmlPath,KLDragonSoulComboPanelView.content)
  44. end
  45. return KLDragonSoulComboPanelView