Click or drag to resize
AB4D logo

DXViewPresentationTypes Enumeration

PresentationTypes enum defines how DXView will present the DirectX 3D scene to the WPF rendering engine.

Namespace: Ab3d.DirectX.Controls
Assembly: Ab3d.DXEngine.Wpf (in Ab3d.DXEngine.Wpf.dll) Version: 7.0.8865.1045
Syntax
C#
public enum PresentationTypes
Members
Member nameValueDescription
DirectXImage0 3D scene is rendered with DirectX 11 and than "sent" as shared resource to WPF rendering engine (to D3DImage) that combines the 3D scene with other WPF objects. DirectXImage allows WPF objects to be drawn on top of DXView.
DirectXOverlay1 3D scene is rendered with DirectX 11 and shown on top of any WPF objects with using HwndHost. DirectXOverlay has the best performance but do not allow WPF objects to be drawn on top of DXView.
See Also