blob: 79869cfd0b80b5cfcb8df669c96478c926699607 (
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
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient.UI
{
internal class GuildTerritoryLeagueBehaviour : DlgBehaviourBase
{
public IXUICheckBox mCheckBox;
public IXUIButton mClose;
public IXUIButton mClear;
public IXUIScrollView mScrollView;
public IXUIWrapContent mWrapContent;
private void Awake()
{
this.mCheckBox = (base.transform.Find("AllSelItem").GetComponent("XUICheckBox") as IXUICheckBox);
this.mClose = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton);
this.mClear = (base.transform.Find("Clear").GetComponent("XUIButton") as IXUIButton);
this.mScrollView = (base.transform.Find("ScrollView").GetComponent("XUIScrollView") as IXUIScrollView);
this.mWrapContent = (base.transform.Find("ScrollView/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
}
}
}
|