IUIService.ShowComponentEditor(Object, IWin32Window) 方法

定义

尝试显示组件的 ComponentEditorForm

public:
 bool ShowComponentEditor(System::Object ^ component, System::Windows::Forms::IWin32Window ^ parent);
public bool ShowComponentEditor (object component, System.Windows.Forms.IWin32Window parent);
abstract member ShowComponentEditor : obj * System.Windows.Forms.IWin32Window -> bool
Public Function ShowComponentEditor (component As Object, parent As IWin32Window) As Boolean

参数

component
Object

要为其显示 ComponentEditorForm 的组件。

parent
IWin32Window

要成为任何对话框的父级的 IWin32Window

返回

Boolean

如果尝试成功,则为 true;否则为 false

例外

组件不支持组件编辑器。

注解

A ComponentEditorForm 类似于组件对象模型 (COM) 中的属性页。

如果组件不支持组件编辑器,则会引发一个 ArgumentException 。 若要避免这种情况,请务必先调用 CanShowComponentEditor

适用于

另请参阅