GUI - Rhino - Radial Menu - Cross Platform

Hi @TheLionMad,

The new method in Rhino 8.21+ is to set the Eto.Form background color to a 0 alpha value, previously this resulted in a “translucent” looking form but should now allow full Transparency.

In Python it would look something like this (where self is within your Form’s init code):

self.BackgroundColor = Eto.Drawing.Color.FromArgb(0,0,0,0)

or

self.BackgroundColor = Eto.Drawing.Colors.Transparent

Hope that helps!

2 Likes