📄 gui_dispstringat.c
字号:
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
File : GUI_DispStringAt.c
Purpose : Implementation of optional routines
************************************************************************************************************/
#include "GUI_Protected.H"
/*************************************************************************************************************
GUI_DispStringAt
*************************************************************************************************************/
void GUI_DispStringAt(const char GUI_FAR *s, int x, int y) {
GUI_LOCK();
GUI_Context.DispPosX = x;
GUI_Context.DispPosY = y;
GUI_DispString(s);
GUI_UNLOCK();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -