New to Telerik UI for WinFormsStart a free 30-day trial

Disabling Video Recording Button in RadWebCam for WinForms

Updated over 6 months ago

Environment

Product VersionProductAuthor
2025.1.211RadWebCam for WinFormsNadya Todorova

Description

This article explains how to disable video recording in RadWebCam and use only snapshots.

Solution

To disable the video recording button in RadWebCam and specify the control to only use the snapshot feature, set the visibility of the recording button to Collapsed. This action hides the recording button from the UI.

C#

this.radWebCam1.WebCamElement.ToggleRecordingButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;

See Also