diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/XDragonGuildApplyBehaviour.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XDragonGuildApplyBehaviour.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XDragonGuildApplyBehaviour.cs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XDragonGuildApplyBehaviour.cs b/Client/Assets/Scripts/XMainClient/XDragonGuildApplyBehaviour.cs new file mode 100644 index 00000000..e7fbe102 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XDragonGuildApplyBehaviour.cs @@ -0,0 +1,42 @@ +using System;
+using UILib;
+using UnityEngine;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class XDragonGuildApplyBehaviour : DlgBehaviourBase
+ {
+ public IXUIButton m_Close = null;
+
+ public IXUIButton m_BtnApply = null;
+
+ public IXUIButton m_BtnEnterGuild;
+
+ public IXUILabel m_Annoucement;
+
+ public IXUILabel m_PPT;
+
+ public IXUILabel m_NeedApprove;
+
+ public IXUILabel m_ResultNote;
+
+ public GameObject m_ApplyMenu;
+
+ public GameObject m_ResultMenu;
+
+ private void Awake()
+ {
+ this.m_Close = (base.transform.Find("Bg/ApplyMenu/Close").GetComponent("XUIButton") as IXUIButton);
+ this.m_BtnApply = (base.transform.Find("Bg/ApplyMenu/OK").GetComponent("XUIButton") as IXUIButton);
+ this.m_BtnEnterGuild = (base.transform.Find("Bg/ResultMenu/OK").GetComponent("XUIButton") as IXUIButton);
+ this.m_Annoucement = (base.transform.Find("Bg/ApplyMenu/Annoucement").GetComponent("XUILabel") as IXUILabel);
+ this.m_Annoucement.SetText("");
+ this.m_PPT = (base.transform.Find("Bg/ApplyMenu/PPT").GetComponent("XUILabel") as IXUILabel);
+ this.m_NeedApprove = (base.transform.Find("Bg/ApplyMenu/NeedApprove").GetComponent("XUILabel") as IXUILabel);
+ this.m_ResultNote = (base.transform.Find("Bg/ResultMenu/Note").GetComponent("XUILabel") as IXUILabel);
+ this.m_ApplyMenu = base.transform.Find("Bg/ApplyMenu").gameObject;
+ this.m_ResultMenu = base.transform.Find("Bg/ResultMenu").gameObject;
+ }
+ }
+}
|