summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/SearchBar.cs
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-07-10 11:11:28 +0900
commitad9499a98e174d75fcefc0676ef9f5a64ae1e6dd (patch)
treebffd55b1f0e134f8fae193ef78a3bcdc57d29d49 /Xamarin.Forms.Platform.Tizen/Native/SearchBar.cs
parent3d499e232ec240e87ca5e8a1a5cf6ab2f87ea4ea (diff)
downloadxamarin-forms-ad9499a98e174d75fcefc0676ef9f5a64ae1e6dd.tar.gz
xamarin-forms-ad9499a98e174d75fcefc0676ef9f5a64ae1e6dd.tar.bz2
xamarin-forms-ad9499a98e174d75fcefc0676ef9f5a64ae1e6dd.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/SearchBar.cs')
-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>