代码拉取完成,页面将自动刷新
package main
import (
"github.com/ying32/govcl/vcl"
"fmt"
"github.com/ying32/govcl/vcl/types"
)
type TForm1 struct {
*vcl.TForm
Button1 *vcl.TButton
}
var form1 *TForm1
func main() {
vcl.Application.SetFormScaled(true)
vcl.Application.SetIconResId(3)
vcl.Application.Initialize()
vcl.Application.SetMainFormOnTaskBar(true)
mainForm := vcl.Application.CreateForm()
mainForm.SetCaption("Hello")
mainForm.SetPosition(types.PoScreenCenter)
mainForm.EnabledMaximize(false)
mainForm.SetWidth(300)
mainForm.SetHeight(200)
mainForm.SetOnCloseQuery(func(Sender vcl.IObject, CanClose *bool) {
*CanClose = vcl.MessageDlg("是否退出?", types.MtConfirmation, types.MbYes, types.MbNo) == types.IdYes
})
vcl.Application.CreateForm(&form1, true)
btn := vcl.NewButton(mainForm)
btn.SetParent(mainForm)
btn.SetCaption("窗口1")
btn.SetLeft(50)
btn.SetTop(50)
btn.SetOnClick(func(sender vcl.IObject) {
form1.Show()
})
vcl.Application.Run()
}
func (f *TForm1) OnFormCreate(sender vcl.IObject) {
fmt.Println("onCreate")
f.Button1 = vcl.NewButton(f)
fmt.Println("f.Button1:", f.Button1.Instance())
f.Button1.SetParent(f)
//f.Button1.SetName("Button1")
f.Button1.SetCaption("我是按钮")
//f.Button1.SetOnClick(f.OnButton1Click)
}
func (f *TForm1) OnButton1Click(object vcl.IObject) {
vcl.ShowMessage("Click")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。