Для чего нужен атрибут ThemeInfo?

Всякий раз, когда я создаю новое приложение WPF или пользовательскую библиотеку управления WPF,AssemblyInfo.cs Файл содержит следующий атрибут:

[assembly: ThemeInfo(
    ResourceDictionaryLocation.None, 
    //where theme specific resource dictionaries are located
    //(used if a resource is not found in the page, 
    // or application resource dictionaries)
    ResourceDictionaryLocation.SourceAssembly 
    //where the generic resource dictionary is located
    //(used if a resource is not found in the page, 
    // app, or any theme specific resource dictionaries)
)]

Что этоThemeInfo атрибут для? Я что-нибудь сломаю, если уберу это?

Ответы на вопрос(2)

Ваш ответ на вопрос