I am developing a Rhino 8 plugin in C# using Eto.Forms.
I have a GridView with editable cells and everything works correctly with TextBoxCell. Users can edit values directly in the table and the underlying model is updated.
Now I would like to replace some text cells with dropdown lists (ComboBoxCell).
For example, I have columns such as “Limit 1” and “Limit 2” where the user should be able to choose a value from a predefined list instead of typing text manually.
I found several Eto.Forms examples online using ComboBoxCell, such as:
However, I am having trouble getting this to work in Rhino 8.
My main issue is that when I click on the cell and select a value from the dropdown, the selected value is not displayed in the cell and the underlying model is not updated.
I also encountered binding errors when trying to use examples found online :
Cannot implicitly convert type ‘Eto.Forms.IndirectBinding’