walk icon indicating copy to clipboard operation
walk copied to clipboard

A Windows GUI toolkit for the Go Programming Language

Results 121 walk issues
Sort by recently updated
recently updated
newest added

Building using the suggested manifest failed to display any window and `MainWindow` returned an error with "TTM_ADDTOOL failed". I used the test manifest verbatim. I attempted to build the rsrc.syso...

按照示例,调用Dialog,多次调用,内存和线程一直在增加,没有得到释放.主动调用dlg.Dispose()也是一样的情况

hello please add TextSelectionChanged event to TextEdit type to allow to track selection changes and cursor movement.

hello! I want to make a readonly TextEdit to print info. So how I wrap text in a TextEdit?

``` Administrator@USERUQI-0UPTB7Q MINGW64 /e/projects/test/walk/examples/progressindicator (master) $ go build dialog_ui.go pi.go go: finding github.com/lxn/walk latest go: finding github.com/lxn/win latest go: finding golang.org/x/sys latest Administrator@USERUQI-0UPTB7Q MINGW64 /e/projects/test/walk/examples/progressindicator (master) $ ./dialog_ui.exe panic: runtime...

This PR: - ***Depends on lxn/win#119*** - Adds an OpenGL widget - Adds hooks for `SetTimer`/`ClearTimer`/`WM_TIMER` The timer hooks are so I can trigger a repaint, if necessary, on a...

Added support for registering and handling global (system wide) hotkeys: ``` go walk.RegisterGlobalHotKey(window, hotkeyID, walk.Shortcut { Modifiers: walk.ModControl | walk.ModAlt, Key: walk.KeyX, }) window.Hotkey().Attach(func(hotkeyID int) { // Hotkey hotkeyID (Ctrl+Alt+X)...

I create a dialog ,when i click the X ,an error is reported. Should I use Close or Dispose.

How can I set the background to be `transparent? The following is not working ``` func runApp() { mw := new(MyMainWindow) MainWindow{ Title: "Transparent Background", Visible: false, MinSize: Size{800, 600},...

IndexAt() -> Hit Row Index? But LVM_SUBITEMHITTEST => HitRow Index & Column Index how to get hitted cell on TableView? I'm sorry, my english is bad.