OptionSetItem.cs 516 B

12345678910111213141516171819202122232425
  1. /****************************************************************************
  2. * 2025.6 LXD
  3. ****************************************************************************/
  4. using System;
  5. using System.Collections.Generic;
  6. using UnityEngine;
  7. using UnityEngine.UI;
  8. using QFramework;
  9. namespace QFramework
  10. {
  11. public partial class OptionSetItem : UIElement
  12. {
  13. public Toggle m_Toggle;
  14. private void Awake()
  15. {
  16. m_Toggle = transform.GetComponent<Toggle>();
  17. }
  18. protected override void OnBeforeDestroy()
  19. {
  20. }
  21. }
  22. }