CustomComponentViewHandlerAttribute 类

定义

在设计时通知数据流设计器,指示组件的用户界面将自行管理组件查看器。

public ref class CustomComponentViewHandlerAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)]
public sealed class CustomComponentViewHandlerAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)>]
type CustomComponentViewHandlerAttribute = class
    inherit Attribute
Public NotInheritable Class CustomComponentViewHandlerAttribute
Inherits Attribute
继承
CustomComponentViewHandlerAttribute
属性

示例

下面的示例演示 CustomComponentViewHandlerAttribute 应用于类的属性。

[CustomComponentViewHandler]  
public class MyComponentUI  
{  
   ...  
]  
<CustomComponentViewHandler> _  
Public Class MyComponentUI  
  ...  
End Class  

注解

此属性通常由设计时修改在组件本身之外以及组件管理数据流中其他组件的副作用的组件使用。 例如,渐变维度转换会创建整个数据流组件序列,还可以删除其他对象。

构造函数

CustomComponentViewHandlerAttribute()

初始化 CustomComponentViewHandlerAttribute 的新实例。

适用于