C# Class WaveEngine.Components.UI.BorderRenderer

Draw a simple border over controls
Inheritance: Drawable2D
Afficher le fichier Open project: WaveEngine/Components

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
BorderRenderer ( ) : System

Initializes a new instance of the BorderRenderer class.

BorderRenderer ( System.Color color ) : System

Initializes a new instance of the BorderRenderer class.

BorderRenderer ( string name, Type layerType, System.Color color ) : System

Initializes a new instance of the BorderRenderer class.

Draw ( System.TimeSpan gameTime ) : void

Allows to perform custom drawing.

This method will only be called if all the following points are true: The parent of the owner Entity of the Drawable cascades its visibility to its children and it is visible. The Drawable is active. The owner Entity of the Drawable is active and visible.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources.

Method Details

BorderRenderer() public méthode

Initializes a new instance of the BorderRenderer class.
public BorderRenderer ( ) : System
Résultat System

BorderRenderer() public méthode

Initializes a new instance of the BorderRenderer class.
public BorderRenderer ( System.Color color ) : System
color System.Color The color.
Résultat System

BorderRenderer() public méthode

Initializes a new instance of the BorderRenderer class.
public BorderRenderer ( string name, Type layerType, System.Color color ) : System
name string The name.
layerType System.Type Type of the layer.
color System.Color The color.
Résultat System

Dispose() protected méthode

Releases unmanaged and - optionally - managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
Résultat void

Draw() public méthode

Allows to perform custom drawing.
This method will only be called if all the following points are true: The parent of the owner Entity of the Drawable cascades its visibility to its children and it is visible. The Drawable is active. The owner Entity of the Drawable is active and visible.
public Draw ( System.TimeSpan gameTime ) : void
gameTime System.TimeSpan The elapsed game time.
Résultat void