EnableLocationBrowseButton 元素 (Visual Studio 範本)
指定 [新增專案] 對話框中是否提供 [流覽] 按鈕,讓使用者可以輕鬆地修改儲存新專案的預設目錄。
<VSTemplate><TemplateData><EnableLocationBrowseButton>
語法
<EnableLocationBrowseButton> true/false </EnableLocationBrowseButton>
屬性和元素
下列章節說明屬性、子元素和父元素。
屬性
無。
子元素
無。
父元素
元素 | 描述 |
---|---|
TemplateData | 必要項目。 將範本分類,並定義該範本在 [新增專案] 或 [加入新項目] 對話方塊中顯示的方式。 |
文字值
需要文字值。
文字必須是 true
或 false
,指出是否要在 [新增專案] 對話框上顯示 [瀏覽] 按鈕。
備註
EnableLocationBrowseButton
是選擇性項目。 預設值為 true
,其會顯示 [新增專案] 對話框中的 [流覽] 按鈕。
在 [ 新增專案 ] 對話框中,[ 位置 ] 文本框會指定儲存新項目的目錄。 [ 流覽 ] 按鈕可協助您修改此目錄,方法是顯示 [專案位置 ] 對話框,這可讓您輕鬆地瀏覽至計算機可用的不同目錄,然後選擇它作為儲存新項目的目錄。
範例
下列範例說明 Visual C# Windows 應用程式的元數據。
<VSTemplate Type="Project" Version="3.0.0"
xmlns="http://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>