Freigeben über


AmbientLight Konstruktoren

Definition

Initialisiert eine neue Instanz der AmbientLight-Klasse.

Überlädt

AmbientLight()

Initialisiert eine neue Instanz der AmbientLight-Klasse.

AmbientLight(Color)

Initialisiert eine neue Instanz der AmbientLight-Klasse mit der angegebenen Farbe.

AmbientLight()

Initialisiert eine neue Instanz der AmbientLight-Klasse.

public:
 AmbientLight();
public AmbientLight ();
Public Sub New ()

Beispiele

Im folgenden Beispiel wird ein AmbientLight-Code erstellt.

// Ambient light value.
AmbientLight _ambLight = new AmbientLight(System.Windows.Media.Brushes.DarkBlue.Color);
' Ambient light value.
Private _ambLight As New AmbientLight(System.Windows.Media.Brushes.DarkBlue.Color)

Gilt für

AmbientLight(Color)

Initialisiert eine neue Instanz der AmbientLight-Klasse mit der angegebenen Farbe.

public:
 AmbientLight(System::Windows::Media::Color ambientColor);
public AmbientLight (System.Windows.Media.Color ambientColor);
new System.Windows.Media.Media3D.AmbientLight : System.Windows.Media.Color -> System.Windows.Media.Media3D.AmbientLight
Public Sub New (ambientColor As Color)

Parameter

ambientColor
Color

Die Farbe des neuen Lichts.

Beispiele

// Ambient light value.
AmbientLight _ambLight = new AmbientLight(System.Windows.Media.Brushes.DarkBlue.Color);
' Ambient light value.
Private _ambLight As New AmbientLight(System.Windows.Media.Brushes.DarkBlue.Color)

Gilt für