diff --git a/samples/ControlCatalog/Pages/ContextFlyoutPage.axaml b/samples/ControlCatalog/Pages/ContextFlyoutPage.axaml
deleted file mode 100644
index f0e079ad91..0000000000
--- a/samples/ControlCatalog/Pages/ContextFlyoutPage.axaml
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
-
-
- Context Flyout
- A right click Flyout that can be applied to any control.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/ControlCatalog/Pages/ContextFlyoutPage.axaml.cs b/samples/ControlCatalog/Pages/ContextFlyoutPage.axaml.cs
deleted file mode 100644
index e64d4a2cdd..0000000000
--- a/samples/ControlCatalog/Pages/ContextFlyoutPage.axaml.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using Avalonia;
-using Avalonia.Controls;
-using Avalonia.Markup.Xaml;
-using ControlCatalog.ViewModels;
-using Avalonia.Interactivity;
-namespace ControlCatalog.Pages
-{
- public class ContextFlyoutPage : UserControl
- {
- private TextBox _textBox;
-
- public ContextFlyoutPage()
- {
- InitializeComponent();
-
- var vm = new ContextFlyoutPageViewModel();
- vm.View = this;
- DataContext = vm;
-
- _textBox = this.FindControl("TextBox");
-
- var cutButton = this.FindControl