SupportsMasterPage 項目 (Visual Studio 範本)
指定是否在 [新增專案] 對話框上啟用 [選取主版頁面] 複選框。
<VSTemplate><TemplateData><SupportsMasterPage>
語法
<SupportsMasterPage> true/false </SupportsMasterPage>
屬性和項目
下列章節將說明屬性、子項目和父項目。
屬性
無。
子元素
無。
父項目
元素 | 描述 |
---|---|
TemplateData | 指定分類範本的數據,並定義它在 [新增專案] 或 [新增專案] 對話框中顯示的方式。 |
文字值
需要文字值。
文字必須是 true
或 false
,指出 [新增專案] 對話框上是否啟用 [選取主版頁面] 複選框。
備註
SupportsMasterPage
是選擇性項目。 預設值是 false
。
元素 SupportsMasterPage
僅適用於 Web 專案範本。
範例
下列範例說明 Web 專案的元數據,其中包含主版頁面的支援。
<VSTemplate Version="3.0.0" Type="Project"
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">>
<TemplateData>
<Name>MyWebProjecStarterKit</Name>
<Description>A simple Web template</Description>
<Icon>icon.ico</Icon>
<ProjectType>Web</ProjectType>
<ProjectSubType>CSharp</ProjectSubType>
<DefaultName>WebSite</DefaultName>
<SupportsMasterPage>true</SupportsMasterPage>
</TemplateData>
<TemplateContent>
<Project File="WebApplication.webproj">
<ProjectItem>icon.ico</ProjectItem>
<ProjectItem OpenInEditor="true">Default.aspx</ProjectItem>
<ProjectItem>Default.aspx.cs</ProjectItem>
</Project>
</TemplateContent>
</VSTemplate>