欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 科技 > 名人名企 > 一个复杂的布局案例02

一个复杂的布局案例02

2024/11/30 12:50:53 来源:https://blog.csdn.net/shulu/article/details/140203233  浏览:    关键词:一个复杂的布局案例02

一个复杂的布局案例02

实现如下布局:

在这里插入图片描述

代码如下:

package mainimport ("net/url""fyne.io/fyne/v2""fyne.io/fyne/v2/app""fyne.io/fyne/v2/canvas""fyne.io/fyne/v2/container""fyne.io/fyne/v2/theme""fyne.io/fyne/v2/widget"
)func main() {a := app.New()w := a.NewWindow("Base64 Encoder / Decoder")w.SetContent(makeUI())w.Resize(fyne.NewSize(500, 600))w.CenterOnScreen()w.ShowAndRun()
}func makeUI() fyne.CanvasObject {header := canvas.NewText("Base64 Encoder / Decoder", theme.PrimaryColor())header.TextSize = 42header.Alignment = fyne.TextAlignCenteru, _ := url.Parse("https://github.com/able8/base64-encoder-decoder")footer := widget.NewHyperlinkWithStyle("github.com/able8/base64-encoder-decoder", u, fyne.TextAlignCenter, fyne.TextStyle{})input := widget.NewEntry()input.MultiLine = trueinput.Wrapping = fyne.TextWrapBreakinput.SetPlaceHolder("Input Text Or Read from Clipboard")output := widget.NewEntry()output.MultiLine = trueoutput.Wrapping = fyne.TextWrapBreakoutput.SetPlaceHolder("Output Result")encode := widget.NewButtonWithIcon("Encode", theme.MediaSkipNextIcon(), func() {})encode.Importance = widget.HighImportanceclear := widget.NewButtonWithIcon("clear", theme.ContentClearIcon(), func() {})clear.Importance = widget.MediumImportancedecode := widget.NewButtonWithIcon("Decode", theme.MediaSkipPreviousIcon(), func() {})decode.Importance = widget.HighImportancecopy := widget.NewButtonWithIcon("Cut Result", theme.ContentCutIcon(), func() {})copy.Importance = widget.WarningImportancereturn container.NewBorder(header, footer, nil, nil,container.NewGridWithRows(2,container.NewBorder(nil, container.NewVBox(container.NewGridWithColumns(3, encode, clear, decode), copy), nil, nil, input), output,),)
}

总结:

  • 实现这个布局使用到了带内置图标的button、border布局、grid布局。
  • 要想MultiEntry最大化,需要使用border布局的第五个参数center。
  • NewGridWithRows布局等分铺满界面,NewVBox布局不会铺满界面。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com