diff --git a/CrossPlatformModules.csproj b/CrossPlatformModules.csproj
index 62e95a62f..bb95f4f6c 100644
--- a/CrossPlatformModules.csproj
+++ b/CrossPlatformModules.csproj
@@ -189,6 +189,9 @@
Designer
+
+ Designer
+
Designer
@@ -229,6 +232,9 @@
Designer
+
+ system-icons.xml
+
all.xml
@@ -2098,7 +2104,7 @@
False
-
+
-
+
\ No newline at end of file
diff --git a/apps/ui-tests-app/action-bar/system-icons.ts b/apps/ui-tests-app/action-bar/system-icons.ts
new file mode 100644
index 000000000..ac77dc39d
--- /dev/null
+++ b/apps/ui-tests-app/action-bar/system-icons.ts
@@ -0,0 +1,5 @@
+import frame = require("ui/frame");
+
+export function navigate(args) {
+ frame.topmost().navigate("action-bar/clean");
+}
\ No newline at end of file
diff --git a/apps/ui-tests-app/action-bar/system-icons.xml b/apps/ui-tests-app/action-bar/system-icons.xml
new file mode 100644
index 000000000..827b8bff1
--- /dev/null
+++ b/apps/ui-tests-app/action-bar/system-icons.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/ui-tests-app/mainPage.ts b/apps/ui-tests-app/mainPage.ts
index 96db5a781..d0efad4c9 100644
--- a/apps/ui-tests-app/mainPage.ts
+++ b/apps/ui-tests-app/mainPage.ts
@@ -35,6 +35,7 @@ export function selectExample() {
examples.set("actColor", "action-bar/color");
examples.set("actBG", "action-bar/background");
examples.set("actStyle", "action-bar/all");
+examples.set("actSystemIcons", "action-bar/system-icons");
examples.set("basics", "bindings/basics");
examples.set("xmlbasics", "bindings/xmlbasics");
diff --git a/tsconfig.json b/tsconfig.json
index f56083587..75cfbfa7e 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -328,6 +328,7 @@
"apps/ui-tests-app/action-bar/background.ts",
"apps/ui-tests-app/action-bar/clean.ts",
"apps/ui-tests-app/action-bar/color.ts",
+ "apps/ui-tests-app/action-bar/system-icons.ts",
"apps/ui-tests-app/app.ts",
"apps/ui-tests-app/bindings/basics.ts",
"apps/ui-tests-app/bindings/xmlbasics.ts",