IResourceDictionary.cs 601 B

12345678910111213141516171819
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. using System.Collections.Generic;
  5. namespace Avalonia.Controls
  6. {
  7. /// <summary>
  8. /// An indexed dictionary of resources.
  9. /// </summary>
  10. public interface IResourceDictionary : IResourceProvider, IDictionary<object, object>
  11. {
  12. /// <summary>
  13. /// Gets a collection of child resource dictionaries.
  14. /// </summary>
  15. IList<IResourceProvider> MergedDictionaries { get; }
  16. }
  17. }