作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将一些文本附加到此MultiLineEntry
中作为按钮事件。我知道如何设置文本,但找不到附加一些文本的任何示例。是否还有其他widget
可用于此目的?到目前为止,这是我的代码:
package main
import (
"fmt"
"fyne.io/fyne/app"
"fyne.io/fyne/container"
"fyne.io/fyne/widget"
)
func main() {
a := app.New()
w := a.NewWindow("Hello")
largeText := widget.NewMultiLineEntry()
largeText.SetText("Lorem ipsum ...")
largeText.SetPlaceHolder("Type here")
form := &widget.Form{
Items: []*widget.FormItem{
},
OnCancel: func() {
fmt.Println("Cancelled")
},
OnSubmit: func() {
fmt.Println("Form submitted")
// EVENT TO APPEND TO MULTILINE
},
}
w.SetContent(container.NewVBox(form,largeText))
w.ShowAndRun()
}
最佳答案
您可以先获取然后设置:
largeText := widget.NewMultiLineEntry()
largeText.SetText("Lorem ipsum ...")
originalText := largeText.Text
fmt.Println(originalText)
newText := originalText + "appending new text"
largeText.SetText(newText)
关于user-interface - 在fyne中向MultiLineEntry附加一些文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65276566/
我是一名优秀的程序员,十分优秀!