高中生
最后登录1970-1-1
在线时间 小时
注册时间2020-5-25
|
楼主 |
发表于 2020-5-26 17:25:37
|
显示全部楼层
没有
static void _Draw(int x0,int y0,int x1,int y1,int i)
{
char buf[5] = {0};
GUI_SetBkColor(GUI_BLUE);
GUI_FillRect(x0, y0, x1, y1);
GUI_SetFont(GUI_FONT_D48);
GUI_SetTextMode(GUI_TM_REV);
sprintf(buf, "%d", i);
GUI_DispStringHCenterAt(buf, x0 + (x1 - x0) / 2, y0 + (y1 - y0) / 2 - 32);
}
而且我今天试窗口管理的时候,创建窗口也不显示,我怀疑是我移植的问题 |
|