In This Article

PropertyGridItemActionRequest Class

Stores information about a request for a PropertyGridItemActionHandler.

public class PropertyGridItemActionRequest
Inheritance:
object object

Constructors

PropertyGridItemActionRequest(PropertyGridItem, FrameworkElement, string?)

Stores information about a request for a PropertyGridItemActionHandler.

public PropertyGridItemActionRequest(PropertyGridItem container, FrameworkElement element, string? text)
Parameter Type Description
container PropertyGridItem

The PropertyGridItem container.

element FrameworkElement

The FrameworkElement in the container that is the focus of this request.

text string

The typed text, if any, that triggered the request.

Properties

Container

The PropertyGridItem container.

public PropertyGridItem Container { get; }

Property Value

PropertyGridItem

Element

The FrameworkElement in the container that is the focus of this request.

public FrameworkElement Element { get; }

Property Value

FrameworkElement

Text

Gets the typed text, if any, that triggered the request.

public string? Text { get; }

Property Value

string:

The typed text, if any, that triggered the request.

Inherited Members

Extension Methods