Freigeben über


DoubleKeyFrameCollection Klasse

Definition

Stellt eine Auflistung von DoubleKeyFrame-Objekten dar, auf die einzeln über den Index zugegriffen werden kann. DoubleKeyFrameCollection ist der Wert der DoubleAnimationUsingKeyFrames.KeyFrames-Eigenschaft .

public ref class DoubleKeyFrameCollection sealed : IIterable<DoubleKeyFrame ^>, IVector<DoubleKeyFrame ^>
/// [Windows.Foundation.Metadata.Activatable(65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class DoubleKeyFrameCollection final : IIterable<DoubleKeyFrame>, IVector<DoubleKeyFrame>
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
/// [Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
class DoubleKeyFrameCollection final : IIterable<DoubleKeyFrame>, IVector<DoubleKeyFrame>
[Windows.Foundation.Metadata.Activatable(65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class DoubleKeyFrameCollection : IEnumerable<DoubleKeyFrame>, IList<DoubleKeyFrame>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
[Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
public sealed class DoubleKeyFrameCollection : IEnumerable<DoubleKeyFrame>, IList<DoubleKeyFrame>
Public NotInheritable Class DoubleKeyFrameCollection
Implements IEnumerable(Of DoubleKeyFrame), IList(Of DoubleKeyFrame)
Vererbung
Object Platform::Object IInspectable DoubleKeyFrameCollection
Attribute
Implementiert

Windows-Anforderungen

Gerätefamilie
Windows 10 (eingeführt in 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v1.0)

Hinweise

Auflisten der Sammlung in C# oder Microsoft Visual Basic

Eine DoubleKeyFrameCollection ist aufzählbar, sodass Sie sprachspezifische Syntax wie foreach in C# verwenden können, um die Elemente in der Auflistung aufzulisten. Der Compiler führt die Typumwandlung für Sie durch, und Sie müssen nicht explizit in IEnumerable<DoubleKeyFrame> umwandeln. Wenn Sie eine explizite Umwandlung durchführen müssen, z. B. wenn Sie GetEnumerator aufrufen möchten, wandeln Sie mit einer DoubleKeyFrame-Einschränkung in IEnumerable<T> um.

Konstruktoren

DoubleKeyFrameCollection()

Initialisiert eine neue instance der DoubleKeyFrameCollection-Klasse.

Eigenschaften

Size

Ruft die Größe (Anzahl) der Auflistung ab.

Methoden

Append(DoubleKeyFrame)

Fügt der Auflistung ein neues Element hinzu.

Clear()

Entfernt alle Elemente aus der Auflistung.

First()

Gibt den Iterator für die Iteration über die Elemente in der Auflistung zurück.

GetAt(UInt32)

Gibt den DoubleKeyFrame zurück, der sich am angegebenen Index befindet.

GetMany(UInt32, DoubleKeyFrame[])

Ruft mehrere Elemente in einem einzigen Durchlauf durch den Iterator ab.

GetView()

Ruft eine unveränderliche Ansicht in die Auflistung ab.

IndexOf(DoubleKeyFrame, UInt32)

Ruft den Index des angegebenen Elements ab.

InsertAt(UInt32, DoubleKeyFrame)

Fügt das angegebene Element am angegebenen Index ein.

RemoveAt(UInt32)

Entfernt das Element am angegebenen Index.

RemoveAtEnd()

Entfernt das letzte Element in der Auflistung.

ReplaceAll(DoubleKeyFrame[])

Löscht zunächst die Auflistung und fügt dann das bereitgestellte Array als neue Elemente ein.

SetAt(UInt32, DoubleKeyFrame)

Legt den Wert am angegebenen Index auf den angegebenen DoubleKeyFrame-Wert fest.

Gilt für:

Weitere Informationen