summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IResourceDictionary.cs
blob: 5fccb9d9b6a38e758138a277a03dba35d11d6ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;

namespace Xamarin.Forms
{
	internal interface IResourceDictionary : IEnumerable<KeyValuePair<string, object>>
	{
		bool TryGetValue(string key, out object value);

		event EventHandler<ResourcesChangedEventArgs> ValuesChanged;
	}
}