範本檔
更新:2007 年 11 月
組成精靈的樣板是一個文字檔的集合物件,其包含某些簡單指示詞,並根據使用者輸入進行剖析和轉譯,以及加入至初始專案。取得用於剖析範本之正確資訊的方法,是直接存取精靈控制項的符號表。
下列範例是一個非常簡單的樣板檔案,其中精靈要求使用者選取 A 或 B。
範例
This file has been created by My Custom wizard.
You selected:
[!if TYPE_A]
Type A
[!else]
Type B
[!endif]
The name of this project is [!output PROJECT_NAME].root.cpp:
如果使用者選擇 Type B,則上述範本將被轉譯為如下:
輸出
This file has been created by My Custom wizard.
You selected:
Type B
The name of this project is MyApp8.
注意:上述語法為 Visual C++ .NET 的新語法。Visual C++ .NET 中未支援 Visual C++ 的舊版語法。