Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 934923
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T21:04:40+00:00 2026-05-15T21:04:40+00:00

A window has a MenuItem binded to a collection, the MenuItem has ItemTemplate, which

  • 0

A window has a MenuItem binded to a collection, the MenuItem has ItemTemplate, which contains another MenuItem with an attached property using binding:

<Menu Background="Transparent">
        <MenuItem ItemsSource="{Binding SomeThings}" Header="Menu">
            <MenuItem.ItemTemplate>
                <DataTemplate>
                    <MenuItem Header="{Binding MenuTitle}" WpfApplication30:MainWindow.KeyGesture="{Binding KeyGesture}"/>
                </DataTemplate>
            </MenuItem.ItemTemplate>
        </MenuItem>
    </Menu>

The declaration of datasource and attached property:

private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        DataContext = new { 
            SomeThings = new[]
                {
                    new { MenuTitle = "Title 1", KeyGesture = new KeyGesture(Key.A, ModifierKeys.Control) }, 
                    new { MenuTitle = "Title 2", KeyGesture = new KeyGesture(Key.B, ModifierKeys.Control) }, 
                    new { MenuTitle = "Title 3", KeyGesture = new KeyGesture(Key.C, ModifierKeys.Control) }, 
                } };
    }

    public static string GetKeyGesture(MenuItem obj)
    {
        return (string)obj.GetValue(KeyGestureProperty);
    }

    public static void SetKeyGesture(MenuItem obj, string value)
    {
        obj.SetValue(KeyGestureProperty, value);
    }

    public static readonly DependencyProperty KeyGestureProperty =
        DependencyProperty.RegisterAttached("KeyGesture", typeof(KeyGesture), typeof(MainWindow), 
            new PropertyMetadata(OnSetKeyGestureCallback));

    private static void OnSetKeyGestureCallback(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
    {
        var window = GetWindow(dependencyObject);
        var keyGesture = (KeyGesture)e.NewValue;
        window.KeyDown += (sender, keyArgs) =>
        {
            if (keyArgs.Key == keyGesture.Key && keyArgs.KeyboardDevice.Modifiers == keyGesture.Modifiers)
            {
                window.Background = Brushes.AntiqueWhite;
            }
        };

    }

After OnSetKeyGestureCallback is called, a user can use a shortcut to perform an action. But OnSetKeyGestureCallback is called only after the menu is opened. So until the user opens the menu, shortcuts are not available. How to make OnSetKeyGestureCallback be called right after the window or the menu is loaded?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T21:04:40+00:00Added an answer on May 15, 2026 at 9:04 pm

    Don’t need a solution for this problem. Made a different implementation for shortcuts.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

A window has a Grid with two columns. The left column contains a control
I'm trying to check if a window has a certain style using GetWindowLong(hWnd, GWL_STYLE)
I want to create an application which main window has canvas (or something where
I have a WPF application which has a main window composed from several custom
Somehow my Properties window has become detached. When I view properties of any item
My WPF window has its foreground brush set to a brush from a resource
IE9 has this ridiculous blue arrow that's rendered any time the browser window has
How do I detect that an Emacs window has already been split? In my
I have two different styles for my window: Regular - window has title bar
I am working on an app whose main window has an NSDrawer. It is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.