summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2017-03-21 12:44:31 +0100
committerStephane Delcroix <stephane@delcroix.org>2017-03-21 12:44:58 +0100
commit1bb7796951fde529e8a88bd80c1a20284329c838 (patch)
tree26d6c2ab22ecba12c3c759645ed1eeef5688696f /Xamarin.Forms.Core
parent8725484ab0bb054ad46387ec70bfabd16c57b68f (diff)
downloadxamarin-forms-1bb7796951fde529e8a88bd80c1a20284329c838.tar.gz
xamarin-forms-1bb7796951fde529e8a88bd80c1a20284329c838.tar.bz2
xamarin-forms-1bb7796951fde529e8a88bd80c1a20284329c838.zip
[C] fix BP DeclaringType in TextElement[C
Diffstat (limited to 'Xamarin.Forms.Core')
-rw-r--r--Xamarin.Forms.Core/TextElement.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Core/TextElement.cs b/Xamarin.Forms.Core/TextElement.cs
index d64024a6..4dcd71ec 100644
--- a/Xamarin.Forms.Core/TextElement.cs
+++ b/Xamarin.Forms.Core/TextElement.cs
@@ -3,7 +3,7 @@ namespace Xamarin.Forms
static class TextElement
{
public static readonly BindableProperty TextColorProperty =
- BindableProperty.Create("TextColor", typeof(Color), typeof(Button), Color.Default,
+ BindableProperty.Create("TextColor", typeof(Color), typeof(ITextElement), Color.Default,
propertyChanged: OnTextColorPropertyChanged);
static void OnTextColorPropertyChanged(BindableObject bindable, object oldValue, object newValue)