using System.Windows.Controls; using System.Windows.Input; namespace Artemis.UI.Screens.Sidebar { /// /// Interaction logic for SidebarCategoryView.xaml /// public partial class SidebarCategoryView : UserControl { public SidebarCategoryView() { InitializeComponent(); } private void UIElement_OnPreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e) { e.Handled = true; } } }