Go语言Fyne库中的widget.list按钮操作

huangapple go评论115阅读模式
英文:

Go lang fyne widget.list button action

问题

嗨,我正在尝试解决这个谜题,我该如何为每个单独的按钮设置函数?这样它们就不会对我拥有的所有3个按钮执行相同的操作。

通过使用onSelected应该是可能的,我只是不知道如何正确实现。是的,我确实阅读了Fyne的文档;=)

我知道这些实际上不是按钮,但是它们应该具有与按钮相同的选项,只需使用onSelected

关于widget.list的Fyne文档:
https://developer.fyne.io/api/v2.0/widget/list.html

  1. package main
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "io/ioutil"
  6. "fyne.io/fyne/v2"
  7. "fyne.io/fyne/v2/app"
  8. "fyne.io/fyne/v2/container"
  9. "fyne.io/fyne/v2/theme"
  10. "fyne.io/fyne/v2/widget"
  11. )
  12. func main() {
  13. a := app.New()
  14. a.Settings().SetTheme(theme.DarkTheme())
  15. W := a.NewWindow("Application-OutSight")
  16. W.Resize(fyne.NewSize(640, 460))
  17. menuBar := []string{"Home", "App-Status", "Exit"}
  18. listView := widget.NewList(func() int {
  19. return len(menuBar)
  20. }, func() fyne.CanvasObject {
  21. return widget.NewLabel("template")
  22. }, func(id widget.ListItemID, o fyne.CanvasObject) {
  23. o.(*widget.Label).SetText(menuBar[id])
  24. })
  25. contenttext := widget.NewLabel("Welcome to this App")
  26. // 我想要的是这样的,但是不知道如何正确实现
  27. listView.OnSelected[0] = func(id widget.ListItemID) { //button 0
  28. }
  29. listView.OnSelected[1] = func(id widget.ListItemID) { //button 1
  30. }
  31. listView.OnSelected[2] = func(id widget.ListItemID) { //button 2
  32. }
  33. split := container.NewHSplit(
  34. listView,
  35. container.NewMax(contenttext),
  36. )
  37. split.Offset = 0.2
  38. W.SetContent(split)
  39. W.ShowAndRun()
  40. }

希望这可以帮助到你!

英文:

Hey im trying to solve this puzzle how do i set func for every seperate button i have ? so it dosent do the same for alle 3 buttons i have

it should be possibe by using onselected i just cant figure how to get it right. and yes i did read the docs from Fyne ;=)

i know its not actual buttons, but they should have the same options as a button just by using the onselected

fyne doc regarding widget.list
https://developer.fyne.io/api/v2.0/widget/list.html

  1. package main
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "io/ioutil"
  6. "fyne.io/fyne/v2"
  7. "fyne.io/fyne/v2/app"
  8. "fyne.io/fyne/v2/container"
  9. "fyne.io/fyne/v2/theme"
  10. "fyne.io/fyne/v2/widget"
  11. func main() {
  12. a := app.New()
  13. a.Settings().SetTheme(theme.DarkTheme())
  14. W := a.NewWindow("Application-OutSight")
  15. W.Resize(fyne.NewSize(640, 460))
  16. menuBar := []strings{"Home","App-Status", "Exit"}
  17. listView := widget.NewList(func() int {
  18. return len(menuBar)
  19. }, func() fyne.CanvasObject {
  20. return widget.NewLabel("template")
  21. }, func(id widget.ListItemID, o fyne.CanvasObject) {
  22. o.(*widget.Label).SetText = (menuBar[id])
  23. })
  24. contenttext := widget.NewLabel("Welcome to this App")
  25. //what i want is this, but dont know how to get right
  26. listView.OnSelected[0] = func(id widget.ListItemID) { //button 0
  27. }
  28. listView.OnSelected[1] = func(id widget.ListItemID) { //button 1
  29. }
  30. listView.OnSelected[2] = func(id widget.ListItemID) { //buttton2
  31. }
  32. split := (container.NewHSplit(
  33. listView,
  34. container.NewMax(contenttext),
  35. ))
  36. split.Offset = 0.2
  37. W.SetContent(split)
  38. W.ShowAndRun()
  39. }

答案1

得分: 1

widget.List.OnSelected有一个参数widget.ListItemID,它是一个整数。

你可以使用这个id来调用不同项目的函数

  1. listView.OnSelected = func(id widget.ListItemID) {
  2. switch id {
  3. case 0:
  4. //在这里调用按钮/列表项0的函数
  5. case 1:
  6. //在这里调用按钮/列表项1的函数
  7. case 2:
  8. //在这里调用按钮/列表项2的函数
  9. default:
  10. }
  11. }
英文:

widget.List.OnSelected has argument widget.ListItemID which is an int.

You can use this id to called function for different items

  1. listView.OnSelected = func(id widget.ListItemID) {
  2. switch id {
  3. case 0:
  4. //call button/list-item 0 func here
  5. case 1:
  6. //call button/list-item 1 func here
  7. case 2:
  8. //call button/list-item 2 func here
  9. default:
  10. }
  11. }

huangapple
  • 本文由 发表于 2022年10月7日 18:49:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/73986031.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定