blob: 7223baed139d4a53479805ae32cbb0802217c4cb (
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
|
using System;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class GuildRedPackageDetailBehaviour : DlgBehaviourBase
{
public Transform m_root;
public GameObject m_LogPanel;
public IXUILabelSymbol m_Reason;
public IXUILabelSymbol m_Money;
public IXUILabelSymbol m_Note;
public IXUILabelSymbol m_SendName;
public IXUITexture m_sendHeadTexture;
public IXUISprite m_sendHeadSprite;
public IXUILabel m_Count;
public IXUILabel m_ReplyLabel;
public IXUIButton m_Reply;
public IXUISprite m_bgSprite;
public IXUITweenTool m_playTween;
private void Awake()
{
this.m_LogPanel = base.transform.Find("DetailMenu/LogPanel").gameObject;
this.m_root = base.transform.Find("DetailMenu");
this.m_playTween = (this.m_root.GetComponent("XUIPlayTween") as IXUITweenTool);
this.m_Reason = (base.transform.Find("DetailMenu/Reason").GetComponent("XUILabelSymbol") as IXUILabelSymbol);
this.m_Reason.InputText = "";
this.m_Money = (base.transform.Find("DetailMenu/Money").GetComponent("XUILabelSymbol") as IXUILabelSymbol);
this.m_Money.InputText = "";
this.m_Count = (base.transform.Find("DetailMenu/Count").GetComponent("XUILabel") as IXUILabel);
this.m_Count.SetText("");
this.m_Note = (base.transform.Find("DetailMenu/Note").GetComponent("XUILabelSymbol") as IXUILabelSymbol);
this.m_Note.InputText = "";
this.m_Reply = (base.transform.Find("DetailMenu/Reply").GetComponent("XUIButton") as IXUIButton);
this.m_SendName = (base.transform.Find("DetailMenu/Avatar/Name").GetComponent("XUILabelSymbol") as IXUILabelSymbol);
this.m_SendName.InputText = "";
this.m_ReplyLabel = (base.transform.Find("DetailMenu/Reply/T").GetComponent("XUILabel") as IXUILabel);
this.m_bgSprite = (base.transform.Find("Bg").GetComponent("XUISprite") as IXUISprite);
this.m_sendHeadTexture = (base.transform.Find("DetailMenu/Avatar/Texture").GetComponent("XUITexture") as IXUITexture);
this.m_sendHeadSprite = (base.transform.Find("DetailMenu/Avatar/GuildIcon").GetComponent("XUISprite") as IXUISprite);
}
}
}
|