From cd82f35fd66a24b9fd2918e635bf53b863aa1afd Mon Sep 17 00:00:00 2001 From: "everLEEst(SangHyeon Lee)" Date: Tue, 13 May 2025 19:56:35 +0900 Subject: [PATCH] [NUI] Add IsEnabled binding property --- src/Tizen.NUI/src/devel/Binding/ViewBindings.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Tizen.NUI/src/devel/Binding/ViewBindings.cs b/src/Tizen.NUI/src/devel/Binding/ViewBindings.cs index d4bee36ef..8bec803cc 100644 --- a/src/Tizen.NUI/src/devel/Binding/ViewBindings.cs +++ b/src/Tizen.NUI/src/devel/Binding/ViewBindings.cs @@ -14,7 +14,7 @@ * limitations under the License. * */ - + using System; using System.ComponentModel; using System.Collections.Generic; @@ -51,6 +51,14 @@ namespace Tizen.NUI.Binding { Setter = (v, value) => v.SetBackgroundColor(value), }; + + /// + /// Gets the binding property for IsEnabled of a . + /// + public static BindingProperty IsEnabledProperty { get; } = new BindingProperty + { + Setter = (v, value) => v.IsEnabled = value, + }; } /// -- 2.34.1