1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// Demo code for the DropDown primitive.
package main
import "code.rocketnine.space/tslocum/cview"
func main() {
app := cview.NewApplication()
app.EnableMouse(true)
dropdown := cview.NewDropDown()
dropdown.SetLabel("Select an option (hit Enter): ")
dropdown.SetOptions(nil,
cview.NewDropDownOption("First"),
cview.NewDropDownOption("Second"),
cview.NewDropDownOption("Third"),
cview.NewDropDownOption("Fourth"),
cview.NewDropDownOption("Fifth"))
app.SetRoot(dropdown, true)
if err := app.Run(); err != nil {
panic(err)
}
}
|