Replies: 1 comment 1 reply
-
@AArnott do you know where to start on this? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all!
I have a VS extension and need to create a custom property grid implementation. Customizing the default one doesn't look ideal and some things don't seem possible (for example filtering properties with search as you type).
I can do it via custom
ToolWindowPane
. This would require my users to show it from the View -> Other Windows menu. I would much prefer to replace the contents of the Properties window instead. This seems possible as the WPF component properties are different. I've checked the actual components displayed:Microsoft.VisualStudio.Platform.WindowManagement.PropertyBrowserSwitcher
(default old-school Property Grid)and
Microsoft.VisualStudio.DesignTools.Designer.UI.PropertyInspector.SceneNodePropertyInspectorPane
(the fancy WPF grid)Does anybody know how this is done?
Beta Was this translation helpful? Give feedback.
All reactions