summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native
diff options
context:
space:
mode:
authorPawel Andruszkiewicz <p.andruszkie@samsung.com>2017-06-12 10:54:38 +0200
committerKangho Hur <kangho.hur@samsung.com>2017-10-23 13:34:37 +0900
commit9dd673e3eae6bf6beef737e166443d9c6cb41083 (patch)
tree94a9b9b5b6f9638e32f79424f49f583ea7ac7f62 /Xamarin.Forms.Platform.Tizen/Native
parent3ea1834e6f6771dacead4d86bad3c8d64bd5f8a2 (diff)
downloadxamarin-forms-9dd673e3eae6bf6beef737e166443d9c6cb41083.tar.gz
xamarin-forms-9dd673e3eae6bf6beef737e166443d9c6cb41083.tar.bz2
xamarin-forms-9dd673e3eae6bf6beef737e166443d9c6cb41083.zip
Initialize SearchBar with a single batch update
Change-Id: I88749ed075b320ad22bf7cb3d9e869d1f6c6dad6 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/SearchBar.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/SearchBar.cs b/Xamarin.Forms.Platform.Tizen/Native/SearchBar.cs
index 42ada16e..f2335f51 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/SearchBar.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/SearchBar.cs
@@ -330,6 +330,16 @@ namespace Xamarin.Forms.Platform.Tizen.Native
return new ESize(width, BackgroundHeight);
}
+ internal void BatchBegin()
+ {
+ _entry.BatchBegin();
+ }
+
+ internal void BatchCommit()
+ {
+ _entry.BatchCommit();
+ }
+
/// <summary>
/// Handles the event triggered by the cancel button being clicked.
/// </summary>