diff options
author | Paul DiPietro <pauldipietro@users.noreply.github.com> | 2017-03-07 04:38:39 -0600 |
---|---|---|
committer | Rui Marinho <me@ruimarinho.net> | 2017-03-07 10:38:39 +0000 |
commit | f6633c462929fdf426492dd9f08e9862b523b420 (patch) | |
tree | 210f310805caeaf7a0c37052e90006cff436493d | |
parent | 98fe88099c150cf9626058051f8ffa8d5bb4f8bf (diff) | |
download | xamarin-forms-f6633c462929fdf426492dd9f08e9862b523b420.tar.gz xamarin-forms-f6633c462929fdf426492dd9f08e9862b523b420.tar.bz2 xamarin-forms-f6633c462929fdf426492dd9f08e9862b523b420.zip |
[UWP] Set SearchBar's AutoMaximizeSuggestionArea to false (#646)
-rw-r--r-- | Xamarin.Forms.Platform.UAP/SearchBarRenderer.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.UAP/SearchBarRenderer.cs b/Xamarin.Forms.Platform.UAP/SearchBarRenderer.cs index 9b80ade1..7508726c 100644 --- a/Xamarin.Forms.Platform.UAP/SearchBarRenderer.cs +++ b/Xamarin.Forms.Platform.UAP/SearchBarRenderer.cs @@ -26,6 +26,7 @@ namespace Xamarin.Forms.Platform.UWP Control.QuerySubmitted += OnQuerySubmitted; Control.TextChanged += OnTextChanged; Control.Loaded += OnControlLoaded; + Control.AutoMaximizeSuggestionArea = false; } UpdateText(); |