Class XamlImportSettings
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Documents.FormatProviders.Xaml
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class XamlImportSettings
Constructors
XamlImportSettings()
Declaration
public XamlImportSettings()
Properties
AllowedAssemblies
Gets the collection of the assemblies where the allowed types for the XAML import are.
Declaration
public HashSet<string> AllowedAssemblies { get; }
Property Value
System.Collections.Generic.HashSet<System.String>
|
AllowedTypes
Gets the collection of the allowed types for the XAML import. Add any types used in your specific XAML files.
Declaration
public ICollection<Type> AllowedTypes { get; set; }
Property Value
System.Collections.Generic.ICollection<System.Type>
|
AssembliesTokens
Gets the collection of the assemblies tokens. Allows you to add your public keys tokens for additional security.
Declaration
public IDictionary<string, string> AssembliesTokens { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.String>
|
Events
ImageImported
Declaration
public event EventHandler<ImageImportedEventArgs> ImageImported
Event Type
System.EventHandler<ImageImportedEventArgs>
|
InlineUIContainerImported
Declaration
public event EventHandler<InlineUIContainerImportedEventArgs> InlineUIContainerImported
Event Type
System.EventHandler<InlineUIContainerImportedEventArgs>
|
PreProcessingXaml
This event allows you to edit the Xaml before the import or cancel the import if you are not sure that the Xaml is safe.
Declaration
public event EventHandler<PreProcessingXamlEventArgs> PreProcessingXaml
Event Type
System.EventHandler<PreProcessingXamlEventArgs>
|