Removing Shell Navigation Toolbar

I have been successful in removing the majority of toolbar items except for the shell navigation toolbar pictured below.

image

I’ve tried every combination of “Shell Navigation Toolbar” I can think of but no key seems to work. I can remove each individual tool but then I’m stuck with the toolbar drag thing on the left. Any help would be appreciated!

I think I usually just use this snippet

private void RemoveToolbars()
{
	foreach(UltraToolbar tl in IP_CustXPrtPick.MainToolManager.Toolbars)
	{
		tl.Visible = false;
	}
}
2 Likes