summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/XMentorshipCandidatesBehavior.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/XMentorshipCandidatesBehavior.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/UI/XMentorshipCandidatesBehavior.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/XMentorshipCandidatesBehavior.cs b/Client/Assets/Scripts/XMainClient/UI/XMentorshipCandidatesBehavior.cs
new file mode 100644
index 00000000..1fab81fb
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/UI/XMentorshipCandidatesBehavior.cs
@@ -0,0 +1,31 @@
+using System;
+using UILib;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient.UI
+{
+ internal class XMentorshipCandidatesBehavior : DlgBehaviourBase
+ {
+ public IXUIWrapContent WrapContent = null;
+
+ public IXUIScrollView ScrollView = null;
+
+ public IXUIButton ClearBtn;
+
+ public IXUIButton CloseBtn;
+
+ public IXUILabel titleContent;
+
+ public IXUILabel btnContent;
+
+ 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.ClearBtn = (base.transform.Find("Bg/ClearOrSwap").GetComponent("XUIButton") as IXUIButton);
+ this.CloseBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
+ this.titleContent = (base.transform.Find("Bg/Title/content").GetComponent("XUILabel") as IXUILabel);
+ this.btnContent = (base.transform.Find("Bg/ClearOrSwap/Type").GetComponent("XUILabel") as IXUILabel);
+ }
+ }
+}