
I've recently updated to WPF Studio and am in the process of shifting from older versions of most of the controls to the newer ones (Ribbon, Docking, SyntaxEditor).
Previously the SyntaxEditor was being used with the Web Languages Addon that appears to not be ready yet for the current beta.
Is it possible to mix and match the old way of doing things with the new way in the meantime?
Old way looks something like this:
Previously the SyntaxEditor was being used with the Web Languages Addon that appears to not be ready yet for the current beta.
Is it possible to mix and match the old way of doing things with the new way in the meantime?
Old way looks something like this:
_SyntaxEditor.Document.Language = new XmlSyntaxLanguage();
XmlSchemaResolver schemaResolver = new XmlSchemaResolver();
schemaResolver.AddSchema(this.Schema);
_SyntaxEditor.Document.LanguageData = schemaResolver;