MustRegisterWindowClass registers the specified window class. MustRegisterWindowClass must be called once for every window type that is not based on any system provided control, before calling InitChildWidget or InitWidget. Calling MustRegisterWindowClass twice with the same className results in a
(className string)
| 464 | // InitWidget. Calling MustRegisterWindowClass twice with the same className |
| 465 | // results in a panic. |
| 466 | func MustRegisterWindowClass(className string) { |
| 467 | MustRegisterWindowClassWithWndProcPtr(className, defaultWndProcPtr) |
| 468 | } |
| 469 | |
| 470 | func MustRegisterWindowClassWithStyle(className string, style uint32) { |
| 471 | MustRegisterWindowClassWithWndProcPtrAndStyle(className, defaultWndProcPtr, style) |
no test coverage detected
searching dependent graphs…