summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WP8
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.Platform.WP8
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.Platform.WP8')
-rw-r--r--Xamarin.Forms.Platform.WP8/EntryRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WP8/EntryRenderer.cs b/Xamarin.Forms.Platform.WP8/EntryRenderer.cs
index f96ca312..b2749c05 100644
--- a/Xamarin.Forms.Platform.WP8/EntryRenderer.cs
+++ b/Xamarin.Forms.Platform.WP8/EntryRenderer.cs
@@ -181,7 +181,7 @@ namespace Xamarin.Forms.Platform.WinPhone
void TextBoxOnKeyUp(object sender, KeyEventArgs keyEventArgs)
{
if (keyEventArgs.Key == Key.Enter)
- Element.SendCompleted();
+ ((IEntryController)Element).SendCompleted();
}
void TextBoxOnTextChanged(object sender, System.Windows.Controls.TextChangedEventArgs textChangedEventArgs)