Search
ItemPresenterEventArgs Constructor
See Also
 





Initializes a new instance of the ItemPresenterEventArgs class.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public ItemPresenterEventArgs (
    UIElement itemContainer,
    FrameworkElement itemVisual,
    DiagramItem item
)

Visual Basic  Copy Code

Public New ( _
    itemContainer As UIElement, _
    itemVisual As FrameworkElement, _
    item As DiagramItem _
)

 Parameters

itemContainer

The UI element that represents a diagram item. That would be set to the ItemView, a kind of container for item visuals.

itemVisual

The root visual of the item's graphics representation. It is the result of DiagramItem.CreateRenderer, e.g. an instantiation of a data template.

item

The diagram item that is being realized or virtualized.

 See Also