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

namespace Xamarin.Forms
{
	interface ITextElement
	{
		//note to implementor: implement the properties publicly
		Color TextColor { get; }

		//note to implementor: but implement the methods explicitly
		void OnTextColorPropertyChanged(Color oldValue, Color newValue);
	}
}