New to Telerik UI for WinForms? Start a free 30-day trial
Disabling Video Recording Button in RadWebCam for WinForms
Updated over 6 months ago
Environment
| Product Version | Product | Author |
|---|---|---|
| 2025.1.211 | RadWebCam for WinForms | Nadya 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;