Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CameraControl.AllowAutoStart Property

Specifies whether the control should automatically show the video stream captured from the default camera device when the control is loaded. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public bool AllowAutoStart { get; set; }

#Property Value

Type Description
Boolean

true, if the control should automatically show the video stream captured from the default camera device when the control is loaded; otherwise, false.

#Remarks

Set this property to true to force the control streaming from the first found device automatically on loading. If the CameraControl.Device property is specified and the control does not use the default device, the AllowAutoStart property will have no effect and automatic streaming will be disabled.

To explicitly start streaming from the desired camera device, use the CameraControl.Start method.

See Also