From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/UI/WeddingEnterApplyBehaviour.cs | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/UI/WeddingEnterApplyBehaviour.cs (limited to 'Client/Assets/Scripts/XMainClient/UI/WeddingEnterApplyBehaviour.cs') diff --git a/Client/Assets/Scripts/XMainClient/UI/WeddingEnterApplyBehaviour.cs b/Client/Assets/Scripts/XMainClient/UI/WeddingEnterApplyBehaviour.cs new file mode 100644 index 00000000..588c2ce8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/WeddingEnterApplyBehaviour.cs @@ -0,0 +1,42 @@ +using System; +using UILib; +using XMainClient.UI.UICommon; + +namespace XMainClient.UI +{ + internal class WeddingEnterApplyBehaviour : DlgBehaviourBase + { + public IXUICheckBox m_ToggleEnter; + + public IXUICheckBox m_ToggleApply; + + public IXUIScrollView m_ScrollView; + + public IXUIWrapContent m_WrapContent; + + public IXUILabel m_EmptyList; + + public IXUILabel m_EmptyList2; + + public IXUIButton m_GoApplyTab; + + public IXUIButton m_ClosedSpr; + + public IXUILabel m_Title; + + private void Awake() + { + this.m_ToggleEnter = (base.transform.Find("Bg/ToggleEnter").GetComponent("XUICheckBox") as IXUICheckBox); + this.m_ToggleApply = (base.transform.Find("Bg/ToggleApply").GetComponent("XUICheckBox") as IXUICheckBox); + this.m_ToggleEnter.ID = 0UL; + this.m_ToggleApply.ID = 1UL; + 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_EmptyList = (base.transform.Find("Bg/Empty").GetComponent("XUILabel") as IXUILabel); + this.m_EmptyList2 = (base.transform.Find("Bg/Empty2").GetComponent("XUILabel") as IXUILabel); + this.m_GoApplyTab = (base.transform.Find("Bg/GoApply").GetComponent("XUIButton") as IXUIButton); + this.m_Title = (base.transform.Find("Bg/Title").GetComponent("XUILabel") as IXUILabel); + this.m_ClosedSpr = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton); + } + } +} -- cgit v1.1-26-g67d0