blob: cce0bfee6495567573327ee40e80c427efce4be3 (
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
{
internal class XTeamLeagueRecordBehavior : DlgBehaviourBase
{
public IXUIButton CloseBtn;
public IXUIWrapContent WrapContent;
public IXUILabel WinTimesLabel;
public IXUILabel LostTimesLabel;
public IXUILabel WinRateLabel;
public IXUILabel ConsWinLabel;
public IXUILabel ConsLoseLabel;
private void Awake()
{
this.CloseBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
this.WrapContent = (base.transform.Find("Bg/Bg/ScrollView/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
this.WinTimesLabel = (base.transform.Find("Bg/Message/Win/WinTimes").GetComponent("XUILabel") as IXUILabel);
this.LostTimesLabel = (base.transform.Find("Bg/Message/Lose/LoseTimes").GetComponent("XUILabel") as IXUILabel);
this.WinRateLabel = (base.transform.Find("Bg/Message/Rate/Label").GetComponent("XUILabel") as IXUILabel);
this.ConsWinLabel = (base.transform.Find("Bg/Message/ConsWin/Label").GetComponent("XUILabel") as IXUILabel);
this.ConsLoseLabel = (base.transform.Find("Bg/Message/ConsLose/Label").GetComponent("XUILabel") as IXUILabel);
}
}
}
|