diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-14 16:25:39 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-14 16:25:39 -0500 |
| commit | 88646445b02da6be218e7059b6c0ef72ab3cf98c (patch) | |
| tree | 4ffa4d51929f123001d41921eea899643c3f88ad /main.go | |
| parent | 61d7f285ac3ba1e2da84e1b8323cb45b0e8fd799 (diff) | |
Added Listboxes. You can't use the results just yet...
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -14,7 +14,9 @@ func main() { cb2 := NewCombobox(false, "You can't edit me!", "No you can't!", "No you won't!") e := NewLineEdit("Enter text here too") l := NewLabel("This is a label") - s := NewStack(Vertical, b, c, cb1, cb2, e, l) + s0 := NewStack(Vertical, b, c, cb1, cb2, e, l) + lb := NewListbox(true, "Select One", "Or More", "To Continue") + s := NewStack(Horizontal, lb, s0) err := w.Open(s) if err != nil { panic(err) |
