From: InHong Han Date: Thu, 29 Sep 2022 08:16:32 +0000 (+0900) Subject: Modified to send pop action when the back button is clicked X-Git-Tag: accepted/tizen/unified/20221004.073928~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c0628732e71e556f5d89e030e61fcb56f49c5eb;p=profile%2Fiot%2Fapps%2Fdotnet%2Fsetting-inputmethod.git Modified to send pop action when the back button is clicked Change-Id: I705545a5773944e4091ad68c975f0557c555e8ea --- diff --git a/Settings/SettingInputmethod/SettingWidgetInputmethod.cs b/Settings/SettingInputmethod/SettingWidgetInputmethod.cs index b116e6d..190d028 100644 --- a/Settings/SettingInputmethod/SettingWidgetInputmethod.cs +++ b/Settings/SettingInputmethod/SettingWidgetInputmethod.cs @@ -79,7 +79,10 @@ namespace SettingInputmethod backButton.Clicked += (object source, ClickedEventArgs args) => { - navigator.Pop(); + Bundle nextBundle = new Bundle(); + nextBundle.AddItem("WIDGET_ACTION", "POP"); + String encodedBundle = nextBundle.Encode(); + SetContentInfo(encodedBundle); }; appBar.NavigationContent = backButton; diff --git a/packaging/org.tizen.cssetting-inputmethod-1.0.0.tpk b/packaging/org.tizen.cssetting-inputmethod-1.0.0.tpk index 4d10c0b..f2c3a60 100644 Binary files a/packaging/org.tizen.cssetting-inputmethod-1.0.0.tpk and b/packaging/org.tizen.cssetting-inputmethod-1.0.0.tpk differ