12345678910111213141516171819202122232425262728293031323334 |
- /****************************************************************************
- * 2023.10 DESKTOP-DL7CJI0
- ****************************************************************************/
- using System;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.UI;
- using QFramework;
- namespace QFramework
- {
- public partial class SubmitResult : UIElement
- {
- private void Awake()
- {
- ConfirmBtn.onClick.AddListener(() =>
- {
- gameObject.SetActive(false);
- ExamManagerForPC.instance.ExamFinish();
- UIKit.GetPanel<PC_OperatePanel>().BlackImg.gameObject.SetActive(true);
- });
- CancelBtn.onClick.AddListener(() =>
- {
- gameObject.SetActive(false);
- UIKit.GetPanel<PC_OperatePanel>().BlackImg.gameObject.SetActive(false);
- });
- }
- protected override void OnBeforeDestroy()
- {
- }
- }
- }
|