I’m initializing Rhino.Inside with WindowStyle as Hidden, is it possible to change this dynamically, let us say when the user clicks on a button, then the window style of the rhino instance can be changed to Normal so that it’s visible ?
GC.SuppressFinalize
(
new RhinoCore
(
new string[]
{
"/nosplash",
"/scheme=Unity"
},
WindowStyle.Hidden
)
);