private void micTestBtn_Click(object sender, EventArgs e)
        {
            if (this.micTestBtn.Text.Equals("麦克风测试"))
            {
                // 开始麦克风测试
                this.micTestBtn.Text = "停止";

                if (mTRTCCloud != null)
                {
                    mDeviceManager.startMicDeviceTest(200);
                }
            }
            else
            {
                // 停止麦克风测试
                this.micTestBtn.Text      = "麦克风测试";
                this.micProgressBar.Value = 0;
                if (mTRTCCloud != null)
                {
                    mDeviceManager.stopMicDeviceTest();
                }
            }
        }