Decorator 类
当重写在派生类,表示关系图中的修饰器元素。
继承层次结构
System.Object
Microsoft.VisualStudio.Modeling.Diagrams.Decorator
Microsoft.VisualStudio.Modeling.Diagrams.ConnectorDecorator
Microsoft.VisualStudio.Modeling.Diagrams.ShapeDecorator
命名空间: Microsoft.VisualStudio.Modeling.Diagrams
程序集: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0(在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll 中)
语法
声明
Public MustInherit Class Decorator
public abstract class Decorator
Decorator 类型公开以下成员。
构造函数
名称 | 说明 | |
---|---|---|
Decorator(ShapeField, PointD) | 初始化 Decorator 类的新实例。 | |
Decorator(ShapeField, PointD, Boolean) | 构造一个新修饰器。 |
页首
属性
名称 | 说明 | |
---|---|---|
CanMove | 此修饰器是否可以移动。,才会实例化,则可将向下并需要宿主,修饰器可以移动。 | |
DecoratorAnchorMargins | 在字段中获取周围边距。此时将修饰器此区域可以附加到字段。 | |
Field | 获取一个修饰器 " 指派给 " 字段。 | |
Offset | 获取或设置修改一个修饰器的默认位置的偏移量。 | |
RequiresHost | 获取一个修饰器并验证该和形状之间的位置是否需要宿主形状。 |
页首
方法
页首
备注
修饰器在关系图的其他元素环绕设置它们。
若要确保内部修饰器重叠,应锚定到关系图。 锚定修饰器,第一个重写 [InitializeShapeFields] 调用基础。 然后使用 [FindShapeField] 找到要应用程序的修饰器的形状字段,然后调用适当的锚定的方法。
示例
在下面的示例中,名称修饰器锚定到一个 Name2 修饰器的右侧。
partial class WizardPageShape
{
protected override void InitializeShapeFields(IList<Microsoft.VisualStudio.Modeling.Diagrams.ShapeField> shapeFields)
{
base.InitializeShapeFields(shapeFields);
ShapeField name = ShapeElement.FindShapeField(shapeFields, "Name");
ShapeField name2 = ShapeElement.FindShapeField(shapeFields, "Name2");
name.AnchoringBehavior.SetLeftAnchor(name2, AnchoringBehavior.Edge.Right, 0.01);
}
}
线程安全
此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。