Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Adding menu item to ControlCenter

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Adding menu item to ControlCenter

    Hi, Is there any sample code for adding a separator and menu item to the Help menu in the ControlCenter? The image shows the menu that I'd like to add to:


    #2
    Hello,

    Thank you for the post.

    I didn't see a specific sample for this so I have created one that includes a Separator. I have included an Addon and an Indicator sample as there are some differences in getting the Control center window.

    To add items into the Help menu, you would need to change the Automation ID used in the samples. Currently the samples utilize the New menu which is named "ControlCenterMenuItemNew" this can be replaced with "ControlCenterMenuItemHelp" to instead use the Help menu.

    Also I will include below the code used to Print the resource keys, this is helpful when you do not know what resource may have been used for an item. In this case I needed to locate what resource is used to Style the Separator control for the default items which is "MainMenuSeparator".

    Code:
    foreach (ResourceDictionary resourceDictionary in Application.Current.Resources.MergedDictionaries)
    {
    	foreach (object key in resourceDictionary.Keys)
    	{
    		Print(  key   );
    	}
    }
    I look forward to being of further assistance.
    Attached Files

    Comment


      #3
      Thanks Jesse, I'm VERY grateful to you for your very diligent and helpful reply.
      Your effort has allowed me to get on with my real work instead of spending days figuring that out. I appreciate it so much.

      I modified your example code for finding resources to include the resource type name. The catch block was necessary because the resource dictionary will throw an exception for certain keys.

      Code:
      foreach (ResourceDictionary resourceDictionary in Application.Current.Resources.MergedDictionaries) {
          foreach (object key in resourceDictionary.Keys) {
              try { Print(key + ": " + resourceDictionary[key].GetType().ToString()); } catch { }
          }
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      571 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      331 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      549 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      550 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X