问题内容
我正在尝试调整此(列表)的大小,因为它只显示一行,第二个看到它需要向下滚动我想显示多行,这是代码:-
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
type CustomList struct {
Header fyne.CanvasObject
List *widget.List
}
a := app.New()
// Create a new window
w := a.NewWindow("Resources Manager")
// Create a list with five columns
list = widget.NewList(
func() int {
return len(clientInfos)
},
func() fyne.CanvasObject {
return container.NewHBox(widget.NewIcon(nil), widget.NewLabel(""))
},
func(index int, obj fyne.CanvasObject) {
c := obj.(*fyne.Container)
icon := c.Objects[0].(*widget.Icon)
label := c.Objects[1].(*widget.Label)
// load the image resource
img, err := fyne.LoadResourceFromPath(clientInfos[index].Country)
if err != nil {
fmt.Println("Failed to load image", err)
return
}
// set image to icon and text to label
icon.SetResource(img)
label.SetText(fmt.Sprintf("%s | %s | %s | %s | %s",
clientInfos[index].AppName,
clientInfos[index].Version,
clientInfos[index].kerenl,
clientInfos[index].Price,
clientInfos[index].Size,
))
label.TextStyle = fyne.TextStyle{Bold: true, Italic: false, Monospace: true}
},
)
list.OnSelected = func(id int) {
selectedID = id
}
customList := &CustomList{
Header: widget.NewLabel("Icon | AppName | kerenl | Price | Size | Status"),
List: list,
}
customList.List.Resize(fyne.Size{Height: 434})
// Create a container for the buttons
buttonContainer := container.NewVBox()
buttonContainer.Add(widget.NewButton("Install", func() {
// Handle button click
}))
buttonContainer.Add(widget.NewButton("download", func() {
// Handle button click
}))
buttonContainer.Add(widget.NewButton("Upgrade", func() {
// Handle button click
}))
buttonContainer.Add(widget.NewButton("Refresh", func() {
list.Refresh()
// Handle button click
}))
buttonContainer.Resize(fyne.NewSize(230, 300))
vbox := container.NewVBox(
customList.Header,
customList.List,
)
vbox.Resize(fyne.NewSize(600, 320))
horizontalSplit := container.NewHSplit(vbox, buttonContainer)
horizontalSplit.SetOffset(0.8)
content := container.NewVBox(horizontalSplit, textArea)
w.SetContent(content)
w.Resize(fyne.NewSize(800, 270))
w.ShowAndRun()
登录后复制
还有其他用于 gui 的 Golang 库吗?因为看起来大多数都已经过时了,对吗?然而,我真的需要一些更简单的东西来构建一个 GUI,比如
正确答案
在 fyne 中,小部件被放入容器中,并且该容器通常具有布局。如果您进行了此设置,那么您对 Resize
的手动调用将被所选布局覆盖。
VBox 的使用正是这样做的,因为它的算法希望使每个项目尽可能短。
请改用边框,标题位于顶部,列表占用剩余空间。
Fyne 中的对象总是填充分配给它们的空间,但要使其执行您想要的操作,选择正确的容器/布局非常重要。 https://www.php.cn/link/4d6ce445727ef59cc07abb95d3e4a1d4
以上就是golang fyne gui 无法调整列表大小的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!