forked from tslocum/cview
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
378 B
20 lines
378 B
// Demo code for the Button primitive. |
|
package main |
|
|
|
import "code.rocketnine.space/tslocum/cview" |
|
|
|
func main() { |
|
app := cview.NewApplication() |
|
app.EnableMouse(true) |
|
|
|
button := cview.NewButton("Hit Enter to close") |
|
button.SetRect(0, 0, 22, 3) |
|
button.SetSelectedFunc(func() { |
|
app.Stop() |
|
}) |
|
|
|
app.SetRoot(button, false) |
|
if err := app.Run(); err != nil { |
|
panic(err) |
|
} |
|
}
|
|
|