// 以下为菜单十个按钮的响应函数
    void SetTellChat()
    {
        if (m_CurSpeakerGUID != GlobeVar.INVALID_GUID &&
            m_CurSpeakerGUID != Singleton <ObjManager> .Instance.MainPlayer.GUID)
        {
            //发起私聊
            //肯定打开了。。最近发言列表就在聊天界面左侧
            if (null != m_ChatInfoLogic)
            {
                m_ChatInfoLogic.BeginChat(m_CurSpeakerGUID, m_CurSpeakerName);
            }
        }

        CloseButtonMenu();
    }