?? gui_setcolorindex.c
字號:
/*************************************************************************************************************
SEGGER MICROCONTROLLER SYSTEME GmbH
* Solutions for real time microcontroller applications
File : GUI_DrawBitmap.C
Purpose : Implementation of GUI_DrawBitmap
************************************************************************************************************/
#include "GUI_Protected.H"
// 設置背景顏色的索引
void GUI_SetBkColorIndex(int Index)
{
GUI_LOCK();
{
LCD_SetBkColorIndex(Index);
} GUI_UNLOCK();
}
// 設置前景顏色的索引
void GUI_SetColorIndex(int Index)
{
GUI_LOCK();
{
LCD_SetColorIndex(Index);
}
GUI_UNLOCK();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -