summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Entry.cs
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2016-04-27 05:55:09 -0600
committerkingces95 <kingces95@users.noreply.github.com>2016-04-27 07:55:09 -0400
commit2d9288eee6e6f197364a64308183725e7bd561f9 (patch)
tree82d3e0403429f62c9a1b036ee4d57cc0faf2f0e0 /Xamarin.Forms.Core/Entry.cs
parent35eea1dc77b6dd4f583b6b3a5231845b7165d5b3 (diff)
downloadxamarin-forms-2d9288eee6e6f197364a64308183725e7bd561f9.tar.gz
xamarin-forms-2d9288eee6e6f197364a64308183725e7bd561f9.tar.bz2
xamarin-forms-2d9288eee6e6f197364a64308183725e7bd561f9.zip
Prep Entry for removal of InternalsVisibleTo (#139)
* Prep Entry control for removal of InternalsVisibleTo * Update docs
Diffstat (limited to 'Xamarin.Forms.Core/Entry.cs')
-rw-r--r--Xamarin.Forms.Core/Entry.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Core/Entry.cs b/Xamarin.Forms.Core/Entry.cs
index ef10e963..1ee2f856 100644
--- a/Xamarin.Forms.Core/Entry.cs
+++ b/Xamarin.Forms.Core/Entry.cs
@@ -4,7 +4,7 @@ using Xamarin.Forms.Platform;
namespace Xamarin.Forms
{
[RenderWith(typeof(_EntryRenderer))]
- public class Entry : InputView, IFontElement
+ public class Entry : InputView, IFontElement, IEntryController
{
public static readonly BindableProperty PlaceholderProperty = BindableProperty.Create("Placeholder", typeof(string), typeof(Entry), default(string));
@@ -84,7 +84,7 @@ namespace Xamarin.Forms
public event EventHandler<TextChangedEventArgs> TextChanged;
- internal void SendCompleted()
+ void IEntryController.SendCompleted()
{
Completed?.Invoke(this, EventArgs.Empty);
}