Skip to main content

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.v23.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