I made my plugin that have my panel.
I want to set an icon for this ,visible in layered tab.
But I’m not sure what size and color is good for rhino panel Icon.
I think I can create icon data using Visual Studio.
protected override Rhino.PlugIns.LoadReturnCode OnLoad(ref string errorMessage)
{
Rhino.UI.Panels.RegisterPanel(this, typeof(MyPanel), "MyPanel", System.Drawing.SystemIcons.Application, 0);
return Rhino.PlugIns.LoadReturnCode.Success;
}
I’d like to change “System.Drawing.SystemIcons.Application” to an Icon that indicates my panel function.