Re: [go-nuts] I want to set the position of the window in GUI display of golang

2018-12-12 Thread Louki Sumirniy
I would expect at minimum there is a field in the type in the AssignTo field (it is a struct, I am guessing) that you could use. In VSCode you can control-click on type names and it opens up the declaration of the type (same for functions and variables too) On Monday, 10 December 2018 09:10:16

Re: [go-nuts] I want to set the position of the window in GUI display of golang

2018-12-10 Thread kato masa
thank you for the advice! 2018年12月5日水曜日 12時26分03秒 UTC+9 Robert Engels: > > You should probably file an issue at > > http://github.com/lxn/walk > > They don’t seem to have a community forum, but I think the author could > help you easily. Also you could try stack overflow as there are a few >

Re: [go-nuts] I want to set the position of the window in GUI display of golang

2018-12-04 Thread Robert Engels
You should probably file an issue at http://github.com/lxn/walk They don’t seem to have a community forum, but I think the author could help you easily. Also you could try stack overflow as there are a few questions about this library there. > On Dec 4, 2018, at 7:44 PM, mdi.k...@gmail.com

[go-nuts] I want to set the position of the window in GUI display of golang

2018-12-04 Thread mdi . kato
Hi I'm Japanese, so sorry if my English is wrong. I'm try to display GUI window with WALK(github.com/lxn/walk). But there is a problem dose not go well. If you run this code, maybe the window displayed upper left of screen. I want to set the position of the window in center of screen. What