EnableEditOfLocationField 元素 (Visual Studio 模板)
指定用户是否可以编辑位置字段。
<VSTemplate><TemplateData><EnableEditOfLocationField>
语法
<EnableEditOfLocationField> true/false </EnableEditOfLocationField>
特性和元素
下列各节描述了特性、子元素和父元素。
特性
无
子元素
无
父元素
元素 | 描述 |
---|---|
TemplateData | 必需的元素。 将此模板分类并定义此模板在 “新建项目” 或 “添加新项” 对话框中的显示方式。 |
文本值
需要一个文本值。
文本必须为或true
false
指示用户是否可以编辑“新建项目”对话框中的“位置”文本框。
备注
EnableEditOfLocationField
是可选元素。 默认值为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>
<EnableEditOfLocationField>false</EnableEditOfLocationField>
<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>