summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Cells/EntryCell.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/Cells/EntryCell.cs')
-rw-r--r--Xamarin.Forms.Core/Cells/EntryCell.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Xamarin.Forms.Core/Cells/EntryCell.cs b/Xamarin.Forms.Core/Cells/EntryCell.cs
index 2ec8730a..c325bf2d 100644
--- a/Xamarin.Forms.Core/Cells/EntryCell.cs
+++ b/Xamarin.Forms.Core/Cells/EntryCell.cs
@@ -1,4 +1,5 @@
using System;
+using System.ComponentModel;
namespace Xamarin.Forms
{
@@ -65,7 +66,8 @@ namespace Xamarin.Forms
public event EventHandler Completed;
- void IEntryCellController.SendCompleted()
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public void SendCompleted()
{
EventHandler handler = Completed;
if (handler != null)