blob: 588c2ce800ead40d417cc5bd335765d2ba9178c3 (
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
35
36
37
38
39
40
41
42
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient.UI
{
internal class WeddingEnterApplyBehaviour : DlgBehaviourBase
{
public IXUICheckBox m_ToggleEnter;
public IXUICheckBox m_ToggleApply;
public IXUIScrollView m_ScrollView;
public IXUIWrapContent m_WrapContent;
public IXUILabel m_EmptyList;
public IXUILabel m_EmptyList2;
public IXUIButton m_GoApplyTab;
public IXUIButton m_ClosedSpr;
public IXUILabel m_Title;
private void Awake()
{
this.m_ToggleEnter = (base.transform.Find("Bg/ToggleEnter").GetComponent("XUICheckBox") as IXUICheckBox);
this.m_ToggleApply = (base.transform.Find("Bg/ToggleApply").GetComponent("XUICheckBox") as IXUICheckBox);
this.m_ToggleEnter.ID = 0UL;
this.m_ToggleApply.ID = 1UL;
this.m_ScrollView = (base.transform.Find("Bg/Panel").GetComponent("XUIScrollView") as IXUIScrollView);
this.m_WrapContent = (base.transform.Find("Bg/Panel/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
this.m_EmptyList = (base.transform.Find("Bg/Empty").GetComponent("XUILabel") as IXUILabel);
this.m_EmptyList2 = (base.transform.Find("Bg/Empty2").GetComponent("XUILabel") as IXUILabel);
this.m_GoApplyTab = (base.transform.Find("Bg/GoApply").GetComponent("XUIButton") as IXUIButton);
this.m_Title = (base.transform.Find("Bg/Title").GetComponent("XUILabel") as IXUILabel);
this.m_ClosedSpr = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton);
}
}
}
|