14 строки
364 B
C#
14 строки
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace Xamarin.Forms.Internals
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface IResourceDictionary : IEnumerable<KeyValuePair<string, object>>
|
|
{
|
|
bool TryGetValue(string key, out object value);
|
|
|
|
event EventHandler<ResourcesChangedEventArgs> ValuesChanged;
|
|
}
|
|
} |