View.CustomDrawBackground Event
Occurs at the beginning of each update cycle, right after the drawable is cleared.
Syntax
public event System.EventHandler CustomDrawBackground
Remarks
This event is fired when the view is starting a new update cycle. The drawable has been cleared, and the 2D or 3D transforms have been set up. This event gives the application a chance to do its own drawing, before the rest of the view is drawn. It is mostly useful in 3D, for instance to draw a custom skybox or similar.
Custom drawing can sometimes be done directly to the underlying graphics system used by the drawable; for instance it is possible to use the native OpenGL drawing APIs if the drawable is of the correct type. If possible, however, it is recommended to use the drawing methods of the drawable itself, which will work for all types of drawables. See Custom Native Rendering for more information.
The CustomDrawBackground event is not supported in GlobeView.
Platforms
Windows, Linux, Android