SupportsLanguageDropDown 項目 (Visual Studio 範本)
指定 Web 專案樣本是否與多種語言相同,以及 [新增專案] 對話方塊是否啟用 [語言] 選項。
<VSTemplate><TemplateData><SupportsLanguageDropDown>
語法
<SupportsLanguageDropDown> true/false </SupportsLanguageDropDown>
屬性和項目
下列章節將說明屬性、子項目和父項目。
屬性
無。
子元素
無。
父項目
元素 | 描述 |
---|---|
TemplateData | 必要項目。 將範本分類,並定義該範本在 [新增專案] 或 [加入新項目] 對話方塊中顯示的方式。 |
文字值
需要文字值。
文字必須是 true
或 false
,指出 [新增專案] 對話框是否提供 [語言] 選項。
備註
SupportsLanguageDropDown
是選擇性項目。 預設值是 false
。
元素 SupportsLanguageDropDown
僅適用於 Web 專案範本。
如果這個專案的值設定為 true
,則所有程式設計語言的專案範本都相同,而且 [新增專案] 對話框中會啟用 [語言] 選項。 這個選項可讓您選擇您想要從範本建立之新專案的程式設計語言。
範例
下列範例會指定顯示 [ 語言 ] 下拉式清單選項。
<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>
<SupportsLanguageDropDown>true</SupportsLanguageDropDown>
</TemplateData>
<TemplateContent>
<Project File="WebApplication.webproj">
<ProjectItem>icon.ico</ProjectItem>
<ProjectItem OpenInEditor="true">Default.aspx</ProjectItem>
<ProjectItem>Default.aspx.cs</ProjectItem>
</Project>
</TemplateContent>
</VSTemplate>