New to Telerik UI for WPF? Start a free 30-day trial
Video Flip
Updated on Sep 15, 2025
The RadWebCam control allows you to change the flip of the video feed from the attached camera. To do this, set the FlipVertically and FlipHorizontally properties of RadWebCam to True.
Setting the flip in XAML
XAML
<telerik:RadWebCam FlipVertically="True" FlipHorizontally="True" />
Setting the flip in code
C#
this.radWebCam.FlipVertically = true;
this.radWebCam.FlipHorizontally = true;
Flipped Video
