为了账号安全,请及时绑定邮箱和手机立即绑定

使用 GXUI 在 Go 中滚动窗口

使用 GXUI 在 Go 中滚动窗口

Go
Qyouu 2021-10-18 17:11:20
我正在尝试使用 GXUI 在 Go 中向我的应用程序窗口添加滚动条。说我有这个代码:package mainimport (    "fmt"    "github.com/google/gxui"    "github.com/google/gxui/drivers/gl"    "github.com/google/gxui/samples/flags"    "github.com/google/gxui/themes/dark")func appMain(driver gxui.Driver) {    theme := dark.CreateTheme(driver)    window := theme.CreateWindow(800, 600, "Grid")    window.SetScale(flags.DefaultScaleFactor)    window.OnClose(driver.Terminate)    row := theme.CreateLinearLayout()    row.SetDirection(gxui.LeftToRight)    for c := 0; c < 4; c++ {        col := theme.CreateLinearLayout()        col.SetDirection(gxui.TopToBottom)        for r := 0; r < 100; r++ {            cell := theme.CreateLabel()            cell.SetText(fmt.Sprintf("%d", r*4+c))            col.AddChild(cell)        }        row.AddChild(col)    }    window.AddChild(row)}func main() {    gl.StartDriver(appMain)}当我运行它时,我得到这个窗口:如何让窗口具有滚动条以便我可以查看所有行?
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 195 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信