Beispiel #1
0
func (c *controlSingleHWNDWithText) setText(text string) {
	t := toUTF16(text)
	C.setWindowText(c.hwnd, t)
	c.textlen = C.controlTextLength(c.hwnd, t)
}
Beispiel #2
0
func baseSetText(c textableControl, text string) {
	hwnd := c.hwnd()
	t := toUTF16(text)
	C.setWindowText(hwnd, t)
	c.settextlen(C.controlTextLength(hwnd, t))
}