blob: f17daeff7fe5b1ebb65126aa232aa9448fb7b9a9 (
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.UI
{
internal class XWelfareKingdomPrivilegeDetailBehaviour : DlgBehaviourBase
{
public IXUILabel m_Title;
public IXUIScrollView m_ScrollView;
public IXUILabel m_Content;
public IXUIButton m_Close;
public IXUITexture m_Icon;
public IXUILabel m_Name;
public IXUILabel m_Notice;
private void Awake()
{
this.m_Title = (base.transform.Find("Title").GetComponent("XUILabel") as IXUILabel);
this.m_ScrollView = (base.transform.Find("ScrollView").GetComponent("XUIScrollView") as IXUIScrollView);
this.m_Content = (base.transform.Find("ScrollView/Content").GetComponent("XUILabel") as IXUILabel);
this.m_Close = (base.transform.Find("Btn").GetComponent("XUIButton") as IXUIButton);
this.m_Icon = (base.transform.Find("Texture").GetComponent("XUITexture") as IXUITexture);
this.m_Name = (base.transform.Find("Name").GetComponent("XUILabel") as IXUILabel);
this.m_Notice = (base.transform.Find("Notice").GetComponent("XUILabel") as IXUILabel);
}
}
}
|