using System.Windows.Markup; namespace WPFluent.Controls; /// /// Provides a dictionary implementation that contains WPF UI controls resources used by components and other elements of a WPF application. /// [Localizability(LocalizationCategory.Ignore)] [Ambient] [UsableDuringInitialization(true)] public class SyntaxHighlightDictionary : ResourceDictionary { private const string DictionaryUri = "pack://application:,,,/WPFluent;component/Controls/CodeBlock/SyntaxHighlight.xaml"; /// /// Initializes a new instance of the class. /// It sets the of the WPF UI syntax highlight dictionary. /// public SyntaxHighlightDictionary() => Source = new Uri(DictionaryUri, UriKind.Absolute); }