blob: 7fdf562caf00f2ced1008ec6cd7793c363508926 (
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
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class XChatInputBehaviour : DlgBehaviourBase
{
public IXUISprite m_BlackBg;
public IXUIInput m_TextInput;
public IXUILabel m_ShowLabel;
public IXUIButton m_SendBtn;
public IXUIButton m_btnChatpic;
public IXUISprite m_sprInput;
private void Awake()
{
this.m_BlackBg = (base.transform.Find("BlackBg").GetComponent("XUISprite") as IXUISprite);
this.m_TextInput = (base.transform.Find("Bg/TextInput").GetComponent("XUIInput") as IXUIInput);
this.m_sprInput = (base.transform.Find("Bg/TextInput").GetComponent("XUISprite") as IXUISprite);
this.m_ShowLabel = (base.transform.Find("Bg/TextInput/ChatText").GetComponent("XUILabel") as IXUILabel);
this.m_SendBtn = (base.transform.Find("Bg/Send").GetComponent("XUIButton") as IXUIButton);
this.m_btnChatpic = (base.transform.Find("Bg/chatpic").GetComponent("XUIButton") as IXUIButton);
}
}
}
|