KeyFrame

Inheritance: AvaloniaObject AvaloniaUI documentation: KeyFrame API

Constructors

Properties

Usages

KeyFrame(Rotate3DTransform.AngleXProperty, 0.).cue(0.)

KeyFrames([
    Setter(Rotate3DTransform.AngleXProperty, 0.)
    Setter(Visual.ZIndexProperty, 4)
    Setter(Rotate3DTransform.AngleXProperty, 90.)
    Setter(Visual.ZIndexProperty, 1)
    Setter(Rotate3DTransform.AngleXProperty, 360.)
    Setter(Visual.ZIndexProperty, 4)
])

Get access to the underlying KeyFrame

let keyFrameRef = ViewRef<KeyFrame>()

KeyFrame(Rotate3DTransform.AngleXProperty, 0.).cue(0.)
    .reference(keyFrameRef)

Last updated