[NUI][EXaml] Support AppResourcePath in EXaml
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / EXaml / Operation / SetBindalbeProperty.cs
index 66100e1..51c1718 100755 (executable)
@@ -21,6 +21,7 @@ using System.Text;
 using Tizen.NUI.BaseComponents;
 using Tizen.NUI.Binding;
 using Tizen.NUI.Binding.Internals;
+using Tizen.NUI.Xaml;
 
 namespace Tizen.NUI.EXaml
 {
@@ -50,6 +51,11 @@ namespace Tizen.NUI.EXaml
                     value = globalDataList.GatheredInstances[valueIndex];
                 }
 
+                if (value is ApplicationResourcePathExtension applicationResourcePath)
+                {
+                    value = applicationResourcePath.ProvideValue(null);
+                }
+
                 instance.SetValue(property, value);
             }
         }