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
类型:Object必选。 指向 Visual Studio 环境的最高级别自动化对象的调度指针。
hwndOwner
类型:Int32必选。 向导窗口的父窗口的 hWnd 句柄。
ContextParams
类型:array<Object[]%必选。 元素数组,根据是从**“添加新项”对话框还是“新建项目”**对话框启动向导而变化。 请参见可用值的列表的 ContextParams Enum。
CustomParams
类型:array<Object[]%必选。 用户定义的参数数组,由向导的 .vsz 文件中的 param= 语句确定。 可以使用此数组中传递的参数自定义向导的行为和角色。 请参见可用值的列表的符号的预定义 CustomWizard。
retval
类型:wizardResult%操作的结果。 wizardResult 枚举中的一个值。
实现
IDTWizard.Execute(Object, Int32, Object, Object, wizardResult)
备注
Execute 由向导编写器实现显示适当的向导。 在向导从 添加新项 或 新建项目 对话框时,启动它称为。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。
请参阅
参考
Microsoft.VisualStudio.VsWizard 命名空间