In This Article

PropertyGridItemActionRequest Class

Stores information about a request for a PropertyGridItemActionHandler.

public class PropertyGridItemActionRequest
Inheritance:
object object

Constructors

PropertyGridItemActionRequest(PropertyGridItem, FrameworkElement, string)

Initializes a new instance of the PropertyGridItemActionRequest class.

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

Gets the PropertyGridItem container.

public PropertyGridItem Container { get; }

Property Value

PropertyGridItem:

The PropertyGridItem container.

Element

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

public FrameworkElement Element { get; }

Property Value

FrameworkElement:

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

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