summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/XMentorshipApplicationBehavior.cs
blob: 3de55ff8ae1b97acf913695933406ad75d8c86e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using UILib;
using XMainClient.UI.UICommon;

namespace XMainClient.UI
{
	internal class XMentorshipApplicationBehavior : DlgBehaviourBase
	{
		public IXUIWrapContent WrapContent = null;

		public IXUIButton CloseBtn;

		public IXUIButton ClearBtn;

		public IXUIScrollView scrollView;

		public IXUIButton OneShotBtn;

		private void Awake()
		{
			this.WrapContent = (base.transform.Find("Bg/List/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
			this.scrollView = (this.WrapContent.gameObject.transform.parent.GetComponent("XUIScrollView") as IXUIScrollView);
			this.CloseBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
			this.ClearBtn = (base.transform.Find("Bg/Clear").GetComponent("XUIButton") as IXUIButton);
			this.OneShotBtn = (base.transform.Find("Bg/OneShotAccept").GetComponent("XUIButton") as IXUIButton);
		}
	}
}