picoe / Eto

Cross platform GUI framework for desktop and mobile applications in .NET
Other
3.57k stars 325 forks source link

List component with complex items #2487

Closed Serg-Norseman closed 1 year ago

Serg-Norseman commented 1 year ago

I need a list component (WinForms ListBox handled it in the past) with items that can be displayed with formatting and in multiple lines.

Please advise: what component or combination of ways can implement this now in Eto.Forms?

ListBox doesn't currently have item custom rendering functionality, so it's not entirely clear which way to go...

cwensley commented 1 year ago

GridView with a CustomCell is your best bet there.

Serg-Norseman commented 1 year ago

An unexpected choice. And the header of GridView after all is not switched off?

cwensley commented 1 year ago

Why unexpected? It's a more flexible version of a ListBox 😄. Yes the header can be hidden.

Serg-Norseman commented 1 year ago

I will try. Thank you :)