[Eto] useRhinoStyle not working for some components

I’m not sure if this is a bug or if there is another way to style certain controls with Rhino’s UI style.

I’m trying to stay consistent with Rhino’s UI, however when trying to apply the style to a Button using EtoExtensions.useRhinoStyle(), I can’t seem to get the control to update it’s style. I’ve attached an image below both of a reference and my outcome.

This is the way I’m currently doing it`

Button button = new Button();
button.useRhinoStyle();

My UI`
viber_image_2024-02-16_22-34-11-374

Curve Rebuild Reference`
clipboard_image_bb6719af00cbec9e

Is there any way to make the buttons look the same way? Been at this for a while now and I just can’t seem to get it to work.

Hi @Lynxie,

The Rebuild command dialog box is not created with Eto, but rather with MFC, thus the difference in styling. A better comparison might be to use the SetPt dialog box.

– Dale

Hi @dale,

Thank you for the quick response, that helped. Thank you very much.

Also, am I correct to assume that the entire code base will be changed in the future to only use Eto?