1 Star 0 Fork 0

wmdng / walk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
imageview.go 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
wmdng 提交于 2022-11-20 15:46 . clone from github.com//lxn//walk
// 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
1
https://gitee.com/wmdng/walk.git
git@gitee.com:wmdng/walk.git
wmdng
walk
walk
4d9743ef4213

搜索帮助