diff options
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;
+ }
+ }
+}
|