From 6977ae43b0404f48cd6765bfb26ecdf54179c89c Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Thu, 24 Aug 2023 11:52:39 +0900 Subject: [PATCH] [NUI] Revive IsBinded API for Xaml Due to some legacy app use this internal property, we should revive this legacy property. It will be removed after all apps change this legacy codes Signed-off-by: Eunki, Hong --- .../src/public/XamlBinding/BindableObject.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs b/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs index c6566970f..2beb056fe 100755 --- a/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs +++ b/src/Tizen.NUI/src/public/XamlBinding/BindableObject.cs @@ -791,6 +791,24 @@ namespace Tizen.NUI.Binding } } + /// + /// Check if object is bound or not. + /// This API used for legacy codes. + /// Should be removed after all app usage replaced into IsBound. + /// + [Obsolete("This has been deprecated in API11. Use IsBound property instead.")] + internal bool IsBinded + { + get + { + return IsBound; + } + set + { + IsBound = value; + } + } + /// /// Check if object is bound or not. /// -- 2.34.1