Adding a tab to file bottom menu

Adding a tab to file bottom menu

jaapflonk
Participant Participant
528 Views
1 Reply
Message 1 of 2

Adding a tab to file bottom menu

jaapflonk
Participant
Participant

I want to add a custom tab here:

jaapflonk_0-1701947408763.png

 

Ive tried adding a button to all CommandSites like this: 

          CommandSite FileMenu = new CommandSite("FileMenu", "FileMenu")
            {
                Location = CommandSiteLocation.FileMenu,
                DeployAsPulldownMenu = false
            };
            FileMenu.AddCommand(ifsCmdItem);

            sites.Add(FileMenu);

 

None of them seem to be the one i want. Ive seen custom tabs before on this location.

 

Does anybody know how to do this?

0 Likes
Accepted solutions (1)
529 Views
1 Reply
Reply (1)
Message 2 of 2

Nick_Hall
Collaborator
Collaborator
Accepted solution

Hi Jaap

 

There is an example of adding a custom tab in the Hello World sample

 

It's in the VS19\CSharp\HelloWorld sub-folder when you install the SDK

 

Hope that helps

 

Nick

0 Likes