Custom properties tab - Rhino/Visual Studio

Hi,
I’m trying to create a new object properties tab in rhino. Much like elefront.
Does anyone have any C# code examples to help me out?
example

Cool question @lucas_ngbr,

I also have always wondered this, and your question has prompted me to look it up. Firstly I decompiled Eelefront and found that it has a RhinoPlugin which contains this Property Panel and it turns out Elefront uses this sample code and hasn’t renamed it, which was super handy for us!

If you compile this sample, add the plugin to Rhino from the bin folder and select a piece of geometry it will show the sample bar which you can debug with breakpoints to understand it better

– cs

Thanks!