summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2017-03-07 04:38:39 -0600
committerRui Marinho <me@ruimarinho.net>2017-03-07 10:38:39 +0000
commitf6633c462929fdf426492dd9f08e9862b523b420 (patch)
tree210f310805caeaf7a0c37052e90006cff436493d
parent98fe88099c150cf9626058051f8ffa8d5bb4f8bf (diff)
downloadxamarin-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.cs1
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();