cyrus-zhang

Results 5 comments of cyrus-zhang

func (obj *Chessboard) CreateWindow() { //加载glade文件 builder := gtk.NewBuilder() builder.AddFromFile("ui.glade") //窗口相关 obj.window = gtk.Window(builder.GetObject("window1")) obj.window.SetAppPaintable(true) obj.window.SetPosition(gtk.WIN_POS_CENTER) obj.w, obj.h = 800, 480 obj.window.SetSizeRequest(800, 480) obj.window.SetDecorated(false) obj.window.SetEvents(int(gdk.BUTTON_PRESS_MASK | gdk.BUTTON1_MOTION_MASK)) }

I have the same problem, thank you.

I also encountered this problem when using vault to dynamically obtain the mysql password in the gorm framework. Is there a solution? @Shubham510

I also encountered the same problem. The bad thing is that the front and back ends of our project are separated, and the back-end http interface uses POST, which makes...

同样期待对Rust的集成。