Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 944 Bytes

CustomVisualizer.md

File metadata and controls

23 lines (17 loc) · 944 Bytes

CustomVisualizer

Win2D based visualizer that generates events draw events for each display frame. Audio visualization data is pulled automatically from the source.

(placeholder to be edited)

	IVisualizationSource Source;
	event Windows.Foundation.TypedEventHandler<IInspectable,VisualizerDrawEventArgs> Draw;
	event Windows.Foundation.TypedEventHandler<IInspectable,CreateResourcesEventArgs> CreateResources;

Properties

Source (IVisualizationSource)

The data source where from to get the visualization data

Events

Draw

TypedEventHandler<IInspectable,VisualizerDrawEventArgs>

This event is raised to draw every frame if the visualization. Visualization data and other properties as passed in through the VisualizerDrawEventArgs.

CreateResources

TypedEventHandler<IInspectable,CreateResourcesEventArgs>

Allows to create resources for the draw event.

Home