From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/XShowSameQualityItemsBehavior.cs | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/XShowSameQualityItemsBehavior.cs (limited to 'Client/Assets/Scripts/XMainClient/XShowSameQualityItemsBehavior.cs') diff --git a/Client/Assets/Scripts/XMainClient/XShowSameQualityItemsBehavior.cs b/Client/Assets/Scripts/XMainClient/XShowSameQualityItemsBehavior.cs new file mode 100644 index 00000000..b12b66b7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XShowSameQualityItemsBehavior.cs @@ -0,0 +1,34 @@ +using System; +using UILib; +using XMainClient.UI.UICommon; + +namespace XMainClient +{ + internal class XShowSameQualityItemsBehavior : DlgBehaviourBase + { + public IXUIButton OkBtn = null; + + public IXUILabel TaskStr; + + public IXUILabel TipStr; + + public IXUIScrollView ScrollView; + + public IXUIWrapContent WrapContent; + + public IXUILabel progressLabel; + + public IXUIButton CloseBtn; + + private void Awake() + { + this.OkBtn = (base.transform.Find("task/OK").GetComponent("XUIButton") as IXUIButton); + this.TaskStr = (base.transform.Find("task/OK/TaskStr").GetComponent("XUILabel") as IXUILabel); + this.TipStr = (base.transform.Find("task/Tip").GetComponent("XUILabel") as IXUILabel); + this.progressLabel = (base.transform.Find("task/Tnum").GetComponent("XUILabel") as IXUILabel); + this.ScrollView = (base.transform.Find("ItemsFrame").GetComponent("XUIScrollView") as IXUIScrollView); + this.WrapContent = (base.transform.Find("ItemsFrame/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent); + this.CloseBtn = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton); + } + } +} -- cgit v1.1-26-g67d0