private void btnSaveVideo_Click(object sender, EventArgs e)
 {
     if (btnSaveVideo.Text == "保存视频")
     {
         DMSDK.DM_Record(StaticClass.tempMonitor, path);
         btnSaveVideo.Text = "停止保存";
     }
     else if (btnSaveVideo.Text == "停止保存")
     {
         DMSDK.DM_StopRecord(StaticClass.tempMonitor);
         btnSaveVideo.Text = "保存视频";
     }
 }