[]
public class UIElementInfo
This class should be used only if you want to assign topics to UI elements in custom controls. If you need to handle UI elements inside custom controls, you have to create your own UIElementResolver object and override its virtual methods. Namely, when you override the GetUIElementInfo(object) method, you need to create a UIElementInfo object and set its Name and Parent properties.
Name | Description |
---|---|
UIElementInfo(object) | Initializes a new of instance of a UIElementInfo |
UIElementInfo(object, string, object) | Initializes a new of instance of a UIElementInfo |
Name | Description |
---|---|
Name | Gets or sets the name of the UIElement. The name should be unique inside the parent control. |
Parent | Gets or sets the parent object of the UIElement. |
UIElement | Gets the UI element for which this UIElementInfo object contains data. |