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/XShowSameQualityItemsBehavior.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XShowSameQualityItemsBehavior.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XShowSameQualityItemsBehavior.cs | 34 |
1 files changed, 34 insertions, 0 deletions
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);
+ }
+ }
+}
|