ExamInfo.Designer.cs 730 B

12345678910111213141516171819202122232425262728293031
  1. /****************************************************************************
  2. * 2024.9 CHIVA
  3. ****************************************************************************/
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. using QFramework;
  7. namespace QFramework
  8. {
  9. public partial class ExamInfo
  10. {
  11. [SerializeField] public UnityEngine.UI.Text ExamTime;
  12. [SerializeField] public UnityEngine.UI.Text ErrorCount;
  13. [SerializeField] public UnityEngine.UI.Image ErrorInfoTitle;
  14. [SerializeField] public UnityEngine.UI.Text WrongInfo;
  15. public void Clear()
  16. {
  17. ExamTime = null;
  18. ErrorCount = null;
  19. ErrorInfoTitle = null;
  20. WrongInfo = null;
  21. }
  22. public override string ComponentName
  23. {
  24. get { return "ExamInfo";}
  25. }
  26. }
  27. }