I Want open a window in Rhino 6.0

with Rhino 5 common work like this

starter form = new starter();
            if (mode == RunMode.Interactive)
            {
                
                form.ShowDialog(RhinoApp.MainWindow());
                RhinoApp.WriteLine(form.result);
            }

but how it work with rh6 Commeon

Thanks Robert

Hi @Robert,

Your code should work in Rhino 6. Have you tested?

Also, this from the Rhino developer samples repo on GitHub.

SampleCsModalFormCommand.cs

– Dale