Add options page to existing Treeview node in Tools/Options #416
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think the reason it's not appearing under the "Debugging" node is because the node's identity and the actual text displayed is different. The node's identity is Here's how I discovered this:
You'll see that there's a So if you define your options page with a [ProvideOptionPage(typeof(MyOptionsPage), "Debugger", "X# Debugger", 0, 0, true)] |
Beta Was this translation helpful? Give feedback.
-
Dave, that is brilliant. Thanks for the tip. |
Beta Was this translation helpful? Give feedback.
I think the reason it's not appearing under the "Debugging" node is because the node's identity and the actual text displayed is different. The node's identity is
"Debugger"
, whereas the displayed text is coming from a resource file with the value "Debugging".Here's how I discovered this:
Config/ToolsOptionsPages
You'll see that there's a
Debugger
node withGeneral
,HotReload
,JIT
, etc as children.So if you define your options page with a
categoryName
of "Debugger", then it should appear in the correct place.