
imageview.go
// Copyright 2017 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"github.com/lxn/walk"
. "github.com/lxn/walk/declarative"
)
func main() {
walk.Resources.SetRootDirPath("../img")
type Mode struct {
Name string
Value ImageViewMode
}
modes := []Mode{
{"ImageViewModeIdeal", ImageViewModeIdeal},
{"ImageViewModeCorner", ImageViewModeCorner},
{"ImageViewModeCenter", ImageViewModeCenter},
{"ImageViewModeShrink", ImageViewModeShrink},
{"ImageViewModeZoom", ImageViewModeZoom},
{"ImageViewModeStretch", ImageViewModeStretch},
}
var widgets []Widget
for _, mode := range modes {
widgets = append(widgets,
Label{
Text: mode.Name,
},
ImageView{
Background: SolidColorBrush{Color: walk.RGB(255, 191, 0)},
Image: "open.png",
Margin: 10,
Mode: mode.Value,
},
)
}
MainWindow{
Title: "Walk ImageView Example",
Size: Size{400, 600},
Layout: Grid{Columns: 2},
Children: widgets,
}.Run()
}
这段代码演示了如何在Go中使用Walk库创建一个主窗口,显示不同ImageView模式的图片。程序展示了ImageViewModeIdeal、ImageViewModeCorner等不同模式下图片的显示效果,每个模式都配有一个标签说明。
2246

被折叠的 条评论
为什么被折叠?



