blob: 81cd80954a9e2f2c23c3b627d1013bbc6d214f98 (
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
57
58
59
60
61
62
63
64
65
|
using System;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class DungeonShareBehavior : DlgBehaviourBase
{
public Transform _logoQQ;
public Transform _logoWechat;
public Transform _wechatShare;
public Transform _QQShare;
public IXUIButton _QQ_specialTarget;
public IXUIButton _QQ_ZoneTarget;
public IXUIButton _wechat_SpecialTarget;
public IXUIButton _wechat_ZoneTarget;
public IXUIButton _shareBtn;
public IXUIButton _closeBtn;
public IXUILabel _nameLabel;
public IXUILabel _serverLabel;
public IXUILabel _noteLabel;
public IXUILabel _firstLabel;
public IUIDummy _uiDummy;
public IXUITexture _bgTexture;
public IXUISprite _bgText;
private void Awake()
{
this._logoQQ = base.transform.Find("Bg/LogoQQ");
this._logoWechat = base.transform.Find("Bg/LogoWC");
this._wechatShare = base.transform.Find("Bg/Wc");
this._wechat_SpecialTarget = (this._wechatShare.Find("Wc1").GetComponent("XUIButton") as IXUIButton);
this._wechat_ZoneTarget = (this._wechatShare.Find("Wc2").GetComponent("XUIButton") as IXUIButton);
this._QQShare = base.transform.Find("Bg/QQ");
this._QQ_specialTarget = (this._QQShare.Find("QQ1").GetComponent("XUIButton") as IXUIButton);
this._QQ_ZoneTarget = (this._QQShare.Find("QQ2").GetComponent("XUIButton") as IXUIButton);
this._shareBtn = (base.transform.Find("Bg/ShareBtn").GetComponent("XUIButton") as IXUIButton);
this._nameLabel = (base.transform.Find("Bg/label/name").GetComponent("XUILabel") as IXUILabel);
this._serverLabel = (base.transform.Find("Bg/label/fuwuqi").GetComponent("XUILabel") as IXUILabel);
this._noteLabel = (base.transform.Find("Bg/Note").GetComponent("XUILabel") as IXUILabel);
this._uiDummy = (base.transform.Find("Bg/Snapshot").GetComponent("UIDummy") as IUIDummy);
this._bgTexture = (base.transform.Find("Bg/pHanging").GetComponent("XUITexture") as IXUITexture);
this._closeBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
this._bgText = (base.transform.Find("Bg/cxlbfont").GetComponent("XUISprite") as IXUISprite);
this._firstLabel = (base.transform.Find("Bg/cxlbfont/t").GetComponent("XUILabel") as IXUILabel);
}
}
}
|