blob: b12b66b765353dee4454d716d09637d2f98cc254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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);
}
}
}
|