From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/UI/XGuildApproveBehaviour.cs | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/UI/XGuildApproveBehaviour.cs (limited to 'Client/Assets/Scripts/XMainClient/UI/XGuildApproveBehaviour.cs') diff --git a/Client/Assets/Scripts/XMainClient/UI/XGuildApproveBehaviour.cs b/Client/Assets/Scripts/XMainClient/UI/XGuildApproveBehaviour.cs new file mode 100644 index 00000000..d421b2d4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/XGuildApproveBehaviour.cs @@ -0,0 +1,44 @@ +using System; +using UILib; +using UnityEngine; +using XMainClient.UI.UICommon; + +namespace XMainClient.UI +{ + internal class XGuildApproveBehaviour : DlgBehaviourBase + { + public IXUIButton m_Close = null; + + public IXUIButton m_BtnOneKeyCancel; + + public IXUIButton m_BtnSetting; + + public IXUIButton m_BtnSendMessage; + + public IXUILabel m_RequiredPPT; + + public IXUILabel m_NeedApprove; + + public IXUILabel m_MemberCount; + + public IXUIWrapContent m_WrapContent; + + public IXUIScrollView m_ScrollView; + + public GameObject m_SettingPanel; + + private void Awake() + { + this.m_Close = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton); + this.m_BtnOneKeyCancel = (base.transform.Find("Bg/BtnOneKeyCancel").GetComponent("XUIButton") as IXUIButton); + this.m_BtnSetting = (base.transform.Find("Bg/BtnSetting").GetComponent("XUIButton") as IXUIButton); + this.m_BtnSendMessage = (base.transform.Find("Bg/BtnSendMessage").GetComponent("XUIButton") as IXUIButton); + this.m_ScrollView = (base.transform.Find("Bg/Panel").GetComponent("XUIScrollView") as IXUIScrollView); + this.m_WrapContent = (base.transform.Find("Bg/Panel/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent); + this.m_RequiredPPT = (base.transform.Find("Bg/PPTRequirement").GetComponent("XUILabel") as IXUILabel); + this.m_NeedApprove = (base.transform.Find("Bg/NeedApprove").GetComponent("XUILabel") as IXUILabel); + this.m_MemberCount = (base.transform.Find("Bg/MemberCount").GetComponent("XUILabel") as IXUILabel); + this.m_SettingPanel = base.transform.Find("Bg/SettingPanel").gameObject; + } + } +} -- cgit v1.1-26-g67d0