本文整理汇总了Golang中github.com/AllenDang/w32.MoveWindow函数的典型用法代码示例。如果您正苦于以下问题:Golang MoveWindow函数的具体用法?Golang MoveWindow怎么用?Golang MoveWindow使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了MoveWindow函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: SetPos
func (this *Window) SetPos(x, y int) {
w, h := this.Size()
if w == 0 {
w = 100
}
if h == 0 {
h = 25
}
w32.MoveWindow(this.hwnd, x, y, w, h, true)
}
示例2: SetProperty
// SetProperty sets a window property.
func (win *window) SetProperty(p sparta.Property, v interface{}) {
switch p {
case sparta.Caption:
if win.w.Property(sparta.Parent) != nil {
break
}
w32.SetWindowText(win.id, v.(string))
case sparta.Geometry:
val := v.(image.Rectangle)
w32.MoveWindow(win.id, val.Min.X, val.Min.Y, val.Dx(), val.Dy(), true)
case sparta.Foreground:
val := v.(color.RGBA)
win.fore = getBrush(val)
case sparta.Background:
val := v.(color.RGBA)
win.back = getBrush(val)
}
}
示例3: SetSize
func (this *Window) SetSize(width, height int) {
x, y := this.Pos()
w32.MoveWindow(this.hwnd, x, y, width, height, true)
}