[Xaml] Support import other xaml as the source of resource dictionary
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / EXaml / Action / RootAction.cs
index 30051cf..3294a1b 100755 (executable)
@@ -238,6 +238,12 @@ namespace Tizen.NUI.EXaml
                 var operation = new CreateDPObject(globalDataList, opInfo);
                 globalDataList.Operations.Add(operation);
             };
+
+            createOperations[(int)EXamlOperationType.CreateResourceDictionary] = (GlobalDataList globalDataList, List<object> opInfo) =>
+            {
+                var operation = new CreateResourceDictionary(globalDataList, opInfo);
+                globalDataList.Operations.Add(operation);
+            };
         }
     }
 }