Table of Contents

Class ViewBoxContentChangedEventArgs

Namespace
Nalu
Assembly
Nalu.Maui.Layouts.dll

Event arguments for the ContentChanged event.

public class ViewBoxContentChangedEventArgs : EventArgs
Inheritance
ViewBoxContentChangedEventArgs
Inherited Members

Constructors

ViewBoxContentChangedEventArgs(IView?, IView?)

Creates a new instance of ViewBoxContentChangedEventArgs.

public ViewBoxContentChangedEventArgs(IView? oldContent, IView? newContent)

Parameters

oldContent IView
newContent IView

Properties

NewContent

Gets the new content.

public IView? NewContent { get; }

Property Value

IView

OldContent

Gets the old content.

public IView? OldContent { get; }

Property Value

IView