diff --git a/samples/ControlCatalog/MainView.xaml b/samples/ControlCatalog/MainView.xaml
index b79db9f053..ce79a4bddd 100644
--- a/samples/ControlCatalog/MainView.xaml
+++ b/samples/ControlCatalog/MainView.xaml
@@ -29,6 +29,8 @@
+
+
diff --git a/samples/ControlCatalog/Pages/NotificationsPage.xaml b/samples/ControlCatalog/Pages/NotificationsPage.xaml
new file mode 100644
index 0000000000..3f68878337
--- /dev/null
+++ b/samples/ControlCatalog/Pages/NotificationsPage.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
diff --git a/samples/ControlCatalog/Pages/NotificationsPage.xaml.cs b/samples/ControlCatalog/Pages/NotificationsPage.xaml.cs
new file mode 100644
index 0000000000..eadf92b602
--- /dev/null
+++ b/samples/ControlCatalog/Pages/NotificationsPage.xaml.cs
@@ -0,0 +1,18 @@
+using Avalonia.Controls;
+using Avalonia.Markup.Xaml;
+
+namespace ControlCatalog.Pages
+{
+ public class NotificationsPage : UserControl
+ {
+ public NotificationsPage()
+ {
+ this.InitializeComponent();
+ }
+
+ private void InitializeComponent()
+ {
+ AvaloniaXamlLoader.Load(this);
+ }
+ }
+}