summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Entry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/Entry.cs')
-rw-r--r--Xamarin.Forms.Core/Entry.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Xamarin.Forms.Core/Entry.cs b/Xamarin.Forms.Core/Entry.cs
index 63ba5f10..46cd7740 100644
--- a/Xamarin.Forms.Core/Entry.cs
+++ b/Xamarin.Forms.Core/Entry.cs
@@ -1,4 +1,5 @@
using System;
+using System.ComponentModel;
using Xamarin.Forms.Internals;
using Xamarin.Forms.Platform;
@@ -110,7 +111,8 @@ namespace Xamarin.Forms
public event EventHandler<TextChangedEventArgs> TextChanged;
- void IEntryController.SendCompleted()
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public void SendCompleted()
{
Completed?.Invoke(this, EventArgs.Empty);
}