...
#endif
中間的背景顏色Inactive code highlight
---
背景顏色
General→Editor→Text Editor→Background color
---
---
控制台背景顏色
C/C++→Build→Console→Background color
C/C++→Build→Console→Background color
1.從工具箱拉StatusStrip,並照下步驟拉兩個StatusLabel.
2.第一個StatusStrip叫Status並修改外觀,第二個無預設名稱.
3.toolStripStatusLabel2.Text = "Test";
thread介紹
https://blog.gtwang.org/programming/pthread-multithreading-programming-in-c-tutorial/
#ifdef 識別字 /*若識別字被定義,編譯器會編譯此部分程式*/ #else /*否則編譯此部分程式*/ #endif
#if defined(CONDITION_1) /*若識別字被定義,編譯器會編譯此部分程式*/ #elif /*否則編譯此部分程式*/ #endif
/*Example*/ #define CONDITION_1 #ifdef CONDITION_1 /*編譯此部分程式*/ #else /*不編譯此部分程式*/ #endif