UIProviderRegistry
Class
Provides a registry for managing UI providers in the Telerik Windows Documents framework.
Definition
Namespace:Telerik.Windows.Documents.UI
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public class UIProviderRegistry
Inheritance: objectUIProviderRegistry
Constructors
C#
public UIProviderRegistry()
Methods
Retrieves the UI provider of the specified type for the given object.
C#
public T GetUIProvider<T>(object documentElement) where T : class, IUIProvider
T
Registers a user interface provider of the specified type to the given object.
C#
public void RegisterUIProvider<T>(object documentElement, T uiProvider) where T : class, IUIProvider
Releases the UI provider of the specified type.
C#
public void ReleaseUIProvider<T>(object documentElement) where T : class, IUIProvider