Specifies whether the Browse button is available in the New Project dialog box, so that users can easily modify the default directory where a new project is saved.
<VSTemplate>
<TemplateData>
<EnableLocationBrowseButton>
<EnableLocationBrowseButton> true/false </EnableLocationBrowseButton>
特性和元素
The following sections describe attributes, child elements, and parent elements.
特性
None.
子元素
None.
父元素
Element |
Description |
---|---|
Required element. Categorizes the template and defines how it displays in either the New Project or the Add New Item dialog box. |
文本值
A text value is required.
The text must be either true or false, indicating whether or not to display the Browse button on the New Project dialog box.
备注
EnableLocationBrowseButton is an optional element. The default value is true, which displays the Browse button in the New Project dialog box.
In the New Project dialog box, the Location text box specifies the directory where a new project is saved. The Browse button helps you modify this directory by displaying the Project Location dialog box, which enables you to easily navigate to a different directory that is available from your computer, and then choose it as the directory where the new project is saved.
示例
The following example illustrates the metadata for a Visual C# Windows application.
<VSTemplate Type="Project" Version="3.0.0"
xmlns="https://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>My template</Name>
<Description>A basic starter kit</Description>
<Icon>TemplateIcon.ico</Icon>
<ProjectType>CSharp</ProjectType>
<EnableLocationBrowseButton>false</EnableLocationBrowseButton>
</TemplateData>
<TemplateContent>
<Project File="MyStarterKit.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>