New to Telerik UI for .NET MAUIStart a free 30-day trial

Provides data for events that occur when an element's property changes.

Definition

Namespace:Telerik.Maui.Controls.Compatibility.Common

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

C#
public class ElementPropertyChangedEventArgs : EventArgs

Inheritance: objectEventArgsElementPropertyChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ElementPropertyChangedEventArgs class.

C#
public ElementPropertyChangedEventArgs(object element, string propertyName)
Parameters:elementobject

The element whose property changed.

propertyNamestring

The name of the property that changed.

Properties

Gets or sets the element whose property changed.

C#
public object Element { get; set; }
Property Value:

The element object.

Gets or sets the name of the property that changed.

C#
public string PropertyName { get; set; }
Property Value:

The property name.