using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using XFramework; using XFramework.NetOuter; public class StudentSub3Panel : BasePanel { const string panelName = "Panel_studentSub3推演"; Button button_quit;//退出本科目 Button button_start;//开始维修 FixStepWindowCtrl StepWindowCtrl; AnserWindowCtrl AnserWindow; //维修环节信息 List fixLinks; int linkIndex = 0;//当前进行维修环节索引 public StudentSub3Panel():base(new UIType(panelName)) { } protected override void InitEvent() { StepWindowCtrl = ActivePanel.FindChildTrans("Image_fixStepsWindow").GetComponent(); button_quit = ActivePanel.FindChildTrans("Button_quit").GetComponent