I have a colorDict, whose <key,value> pairs are number and associated System.Drawing.Color.
When I try to set these color onto a Eto.Forms.Label.BackgroundColor, contained in an EtoCollapsibleSection, contained in an Eto.Forms.Panel, the color is simply grey.
It will cover all the control styles called Label in the container. Similarly, it is the same with other controls. You can set the style under Layout, such as: layout.Styles<Label>(null, c=>() {/***style***/});
–Easy