代码拉取完成,页面将自动刷新
package main
import (
"github.com/ying32/govcl/vcl"
"github.com/ying32/govcl/vcl/types"
"github.com/ying32/govcl/vcl/win"
"fmt"
_ "github.com/ying32/govcl/pkgs/winappres"
)
type TMainForm struct {
*vcl.TForm
Button1 *vcl.TButton
}
type TForm1 struct {
*vcl.TForm
Button1 *vcl.TButton
}
var (
mainForm *TMainForm
form1 *TForm1
)
func main() {
vcl.RunApp(&mainForm, &form1)
}
// --------------MainForm -----------------
func (f *TMainForm) OnFormCreate(sender vcl.IObject) {
f.SetCaption("Hello")
f.EnabledMaximize(false)
f.SetWidth(300)
f.SetHeight(200)
f.ScreenCenter()
f.Button1 = vcl.NewButton(f)
f.Button1.SetParent(f)
f.Button1.SetCaption("窗口1")
f.Button1.SetLeft(50)
f.Button1.SetTop(50)
f.Button1.SetOnClick(f.OnButton1Click)
}
func (f *TMainForm) OnButton1Click(object vcl.IObject) {
form1.Show()
}
// 可以窗口创建前修改一些样式等操作,被动调用
func (f *TMainForm) CreateParams(params *types.TCreateParams) {
fmt.Println("调用此过程 TMainForm.CreateParams")
}
// ---------- Form1 ----------------
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")
}
// 可以窗口创建前修改一些样式等操作,被动调用
func (f *TForm1) CreateParams(params *types.TCreateParams) {
fmt.Println("调用此过程 TForm1.CreateParams")
params.WndParent = win.GetDesktopWindow()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。