blob: 20c4c04ac6e253d568191f5f07b444c39cd1f2c6 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient.UI
{
internal class WebViewBehaviour : DlgBehaviourBase
{
public IXUIButton mCloseBtn;
public IXUIButton mBackBtn;
public IXUIButton mCollect;
public IXUICheckBox mCheckLive;
public IXUICheckBox mCheckVideo;
public IXUILabel mTryAgain;
public IXUILabel mTryAgainTip;
public IXUILabel mVideoTitle;
public IXUISprite mLoading;
public IXUISprite mChoiceSp;
public IXUISprite mRedPoint;
public IXUISprite mNetWorkStaus;
public IXUISprite mNetWorkWifi;
private void Awake()
{
this.mCloseBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
this.mCloseBtn.ID = 1UL;
this.mBackBtn = (base.transform.Find("Bg/Return").GetComponent("XUIButton") as IXUIButton);
this.mBackBtn.ID = 2UL;
this.mCollect = (base.transform.Find("Bg/Collect").GetComponent("XUIButton") as IXUIButton);
this.mCheckLive = (base.transform.Find("Bg/TabTpl/tab1/template/Bg").GetComponent("XUICheckBox") as IXUICheckBox);
this.mCheckLive.ID = 1UL;
this.mCheckVideo = (base.transform.Find("Bg/TabTpl/tab2/template/Bg").GetComponent("XUICheckBox") as IXUICheckBox);
this.mCheckVideo.ID = 2UL;
this.mTryAgain = (base.transform.Find("Bg/Tip/Again").GetComponent("XUILabel") as IXUILabel);
this.mTryAgainTip = (base.transform.Find("Bg/Tip").GetComponent("XUILabel") as IXUILabel);
this.mVideoTitle = (base.transform.Find("Bg/Title").GetComponent("XUILabel") as IXUILabel);
this.mChoiceSp = (base.transform.Find("Bg/TabTpl").GetComponent("XUISprite") as IXUISprite);
this.mRedPoint = (base.transform.Find("Bg/Collect/RedPoint").GetComponent("XUISprite") as IXUISprite);
this.mNetWorkStaus = (base.transform.Find("Bg/Sys4G").GetComponent("XUISprite") as IXUISprite);
this.mNetWorkWifi = (base.transform.Find("Bg/SysWifi").GetComponent("XUISprite") as IXUISprite);
this.mLoading = (base.transform.Find("Bg/loading").GetComponent("XUISprite") as IXUISprite);
}
}
}
|