wNim
wNim copied to clipboard
Nim's Windows GUI Framework
The win32 list views support virtualized lists, where data for the list are loaded on-demand, see the documentation: https://docs.microsoft.com/en-us/windows/win32/controls/list-view-controls-overview#virtual-list-view-style Would it be possible to implement support for virtualized lists?
I'm trying to run `dragdrop.nim` example on ubuntu 20.04 x86_64 as PE32+ config.nims ```nim when defined(crosswin): switch("cc", "gcc") const arch = if buildCPU == "amd64": "x86_64" else: "i686" const mingwExe...
module name wHotKeyCtrl -> wHotkeyCtrl
Signed-off-by: David Krause
```nim import wnim type MainWin = object app: wApp frame: wFrame but: wButton proc newMain(): MainWin = result = MainWin() result.app = App() result.frame = Frame(title="Hello World", size=(400, 300)) result.but...
I want to wrap a long sentence in ListCtrl. I'd like to know how to do that. Thank you.
Is it possible to set different background colors for each character in a wTextCtrl?
Besides AutoLayout.js which is not easy to use by any means, are there any other GUI editors we can use to create layouts in Windows 10?
This is simplest program, ```nim import wNim/[wBitmap] let bmp = Bitmap(2447,6000) ``` This program emits wBitmapError exception when on execution, but change bitmap width to 2446 as follows, ```nim import...
if we use vscode then creating .css file we can get color picker and it gives us color code. Plz include function to use color code of vscode.