AssemblyInfo.cs 521 B

1234567891011121314
  1. using System.Windows;
  2. [assembly: ThemeInfo(
  3. ResourceDictionaryLocation.None,
  4. ResourceDictionaryLocation.SourceAssembly)
  5. // ResourceDictionaryLocation.None - where theme specific resource dictionaries are located
  6. // (used if a resource is not found in the page,
  7. // or application resource dictionaries)
  8. // ResourceDictionaryLocation.SourceAssembly - where the generic resource dictionary is located
  9. // (used if a resource is not found in the page,
  10. // app, or any theme specific resource dictionaries)
  11. ]