spvessel / spacevil

Simple examples of SpaceVIL implementation for C# / .NET Framework, C# / .NET Core and Java.
https://spvessel.com
MIT License
55 stars 7 forks source link

Table View #8

Open SWayfarer opened 4 years ago

SWayfarer commented 4 years ago

Is there an analogue of the table (eg javafx.scene.control.TableView) in the framework?

spvessel commented 4 years ago

For now there is no TableView analogue. But you can create a user interface element that will represent one row with the required number of cells and use it with a ListBox. And you need a headline, of course. If you describe what you definitely want from TableView, I could create a simplified counterpart in a short time.

SWayfarer commented 4 years ago

Finally, i use ListBox, thanks!