I'm attempting to following the instructions at https://docs.telerik.com/devtools/wpf/controls/radrichtextbox/mef to improve the loading time of the RadRichTextBox control. However the given example is in c#. I've tried to convert that over to vb.net but I can't seem to find the right assemblies.
For example:
RadCompositionInitializer.Catalog = new TypeCatalog(
// format providers
typeof(XamlFormatProvider),
typeof(RtfFormatProvider),
typeof(DocxFormatProvider));
trying:
Imports Telerik
Imports Telerik.Windows.Documents.UI.Extensibility
Dim oTest as
RadCompositionInitializer.Catalog = new TypeCatalog(
typeof(XamlFormatProvider),
typeof(RtfFormatProvider),
typeof(DocxFormatProvider))
RadCompositionInitializer seems to come from Telerik.Windows.Documents.UI.Extensibility, but RadCompsitionInitializer.Catalog is unknown and TypeCatalog is unknown. Anyone have success in implementing this in vb.net? Many thanks!