Esempio n. 1
0
LCUI_API void
RadioButton_TextW( LCUI_Widget widget, const wchar_t *text )
{
	LCUI_Widget label;
	label = RadioButton_GetLabel(widget);
	Label_SetTextW(label, text); 
}
Esempio n. 2
0
/** 设置窗口标题栏中显示的文本 */
LCUI_API int Window_SetTextW( LCUI_Widget *window, const wchar_t *text )
{
	LCUI_Window *wnd;
	wnd = (LCUI_Window*)Widget_GetPrivateData( window );
	return Label_SetTextW( wnd->text, text );
}