ShowByDefault 元素 (Visual Studio 模板)
如果 false
指定模板将仅显示在指定的 TemplateGroupID 下。
<VSTemplate><TemplateData><ShowByDefault>
语法
<ShowByDefault> true/false </ShowByDefault>
特性和元素
下列各节描述了特性、子元素和父元素。
特性
无。
子元素
无。
父元素
元素 | 描述 |
---|---|
TemplateData | 将此模板分类并定义此模板在 “新建项目” 或 “添加新项” 对话框中的显示方式。 |
文本值
需要一个文本值。
文本必须为 true
或 false
。 如果为 true,则指定将对所有项目类型显示该模板。 如果为 false,则该将仅在指定的 TemplateGroupID
下显示该模板。
注解
ShowByDefault
是可选元素。 默认值是 true
。
示例
以下示例演示 Visual C# 模板的元数据。
<VSTemplate Type="Project" Version="3.0.0"
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>My template</Name>
<Description>A basic template</Description>
<Icon>TemplateIcon.ico</Icon>
<ProjectType>CSharp</ProjectType>
<ShowByDefault>false</ShowByDefault>
</TemplateData>
<TemplateContent>
<Project File="MyTemplate.csproj">
<ProjectItem>Form1.cs<ProjectItem>
<ProjectItem>Form1.Designer.cs</ProjectItem>
<ProjectItem>Program.cs</ProjectItem>
<ProjectItem>Properties\AssemblyInfo.cs</ProjectItem>
<ProjectItem>Properties\Resources.resx</ProjectItem>
<ProjectItem>Properties\Resources.Designer.cs</ProjectItem>
<ProjectItem>Properties\Settings.settings</ProjectItem>
<ProjectItem>Properties\Settings.Designer.cs</ProjectItem>
</Project>
</TemplateContent>
</VSTemplate>