public void Init(SNSOpenInputDialogMsgData.EMDialogType type, string title, string defaultText, string placeHolderText)
 {
     m_Type                 = type;
     Title.text             = title;
     ContentInputField.text = defaultText;
     PlaceHolderText.text   = placeHolderText;
 }
        // 输入对话框关闭,则移除掉
        public void onInputDialogClose(SNSOpenInputDialogMsgData.EMDialogType type)
        {
            m_InputDialogList.Remove((int)type);

            onSubWndClosed();
        }