コード例 #1
0
ファイル: radiobutton.c プロジェクト: hbao/LCUI
LCUI_API void
RadioButton_TextW( LCUI_Widget widget, const wchar_t *text )
{
	LCUI_Widget label;
	label = RadioButton_GetLabel(widget);
	Label_SetTextW(label, text); 
}
コード例 #2
0
ファイル: window.c プロジェクト: FrankHB/LCUI
/** 设置窗口标题栏中显示的文本 */
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 );
}