ListBox
Usage
ListBox.create [
ListBox.dataItems [ "Linux"; "Mac"; "Windows" ]
]ListBox.create [
ListBox.dataItems [ "Linux"; "Mac"; "Windows" ]
ListBox.selectionMode Selection.Multiple
]type OperatingSystem =
| Linux
| Mac
| Windows
ListBox.create [
ListBox.dataItems [ Linux; Mac; Windows ]
]Last updated