VsWizardClass.Execute 方法
调用时,向导从 Add New Item 或 New Project 对话框生成。
命名空间: Microsoft.VisualStudio.VsWizard
程序集: Microsoft.VisualStudio.VsWizard(在 Microsoft.VisualStudio.VsWizard.dll 中)
语法
声明
Public Overridable Sub Execute ( _
Application As Object, _
hwndOwner As Integer, _
ByRef ContextParams As Object(), _
ByRef CustomParams As Object(), _
<OutAttribute> ByRef retval As wizardResult _
)
public virtual void Execute(
Object Application,
int hwndOwner,
ref Object[] ContextParams,
ref Object[] CustomParams,
out wizardResult retval
)
public:
virtual void Execute(
[InAttribute] Object^ Application,
[InAttribute] int hwndOwner,
[InAttribute] array<Object^>^% ContextParams,
[InAttribute] array<Object^>^% CustomParams,
[InAttribute] [OutAttribute] wizardResult% retval
)
abstract Execute :
Application:Object *
hwndOwner:int *
ContextParams:Object[] byref *
CustomParams:Object[] byref *
retval:wizardResult byref -> unit
override Execute :
Application:Object *
hwndOwner:int *
ContextParams:Object[] byref *
CustomParams:Object[] byref *
retval:wizardResult byref -> unit
public function Execute(
Application : Object,
hwndOwner : int,
ContextParams : Object[],
CustomParams : Object[],
retval : wizardResult
)
参数
- Application
类型:System.Object
必选。为最高级别的自动化对象的计划指针 Visual Studio 环境的。
- hwndOwner
类型:System.Int32
必选。向导窗口的父窗口的 hWnd 句柄。
- ContextParams
类型:array<System.Object[]%
必选。更改的数组元素,具体取决于向导是否从 添加新项目 或 新项目 对话框生成。有关可用的值列表参见 ContextParams 枚举。
- CustomParams
类型:array<System.Object[]%
必选。用户定义的参数数组,由向导的 .vsz 文件中的 param= 语句确定。可以使用此数组中传递的参数自定义向导的行为和角色。有关可用的值列表参见预定义的 CustomWizard 符号。
- retval
类型:EnvDTE.wizardResult%
事件的结果。wizardResult 枚举中的一个值。
实现
IDTWizard.Execute(Object, Int32, array<Object[]%, array<Object[]%, wizardResult%)
备注
Execute 由向导编写器实现显示适当的向导。,当向导从 添加新项目 或 新项目 对话框时,生成它调用。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualStudio.VsWizard 命名空间