UITreeNode.Designer.cs 899 B

1234567891011121314151617181920212223242526272829303132333435
  1. /****************************************************************************
  2. * 2021.7 DESKTOP-CLH3E67
  3. ****************************************************************************/
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. using QFramework;
  7. namespace QFramework.ThermalPower
  8. {
  9. public partial class UITreeNode
  10. {
  11. [SerializeField] public UnityEngine.UI.Image Positon;
  12. [SerializeField] public UnityEngine.UI.Toggle Toggle;
  13. [SerializeField] public UnityEngine.UI.Image ExpandImg;
  14. [SerializeField] public UnityEngine.UI.Image RecoverImg;
  15. [SerializeField] public UnityEngine.UI.Text ContentText;
  16. [SerializeField] public UnityEngine.UI.Button Button;
  17. public void Clear()
  18. {
  19. Positon = null;
  20. Toggle = null;
  21. ExpandImg = null;
  22. RecoverImg = null;
  23. ContentText = null;
  24. Button = null;
  25. }
  26. public override string ComponentName
  27. {
  28. get { return "UITreeNode";}
  29. }
  30. }
  31. }