Table of Contents

Class RectangleShape

Namespace
HeBianGu.Control.ImagePlayer
Assembly
HeBianGu.Control.ImagePlayer.dll

矩形图基类

public class RectangleShape : Shape, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IRectangleStroke
Inheritance
RectangleShape
Implements
Derived
Inherited Members
Extension Methods

Constructors

RectangleShape()

无参数构造函数

public RectangleShape()

RectangleShape(RectangleShape)

构造函数

public RectangleShape(RectangleShape rectangle)

Parameters

rectangle RectangleShape

矩形形状

RectangleShape(double, double, double, double)

构造函数

public RectangleShape(double x, double y, double width, double height)

Parameters

x double

左上方 x坐标

y double

左上方 y坐标

width double

宽度

height double

高度

RectangleShape(Point, Point)

构造函数

public RectangleShape(Point start, Point end)

Parameters

start Point

左上角点

end Point

右下角点

Properties

Code

public string Code { get; set; }

Property Value

string

DefiningGeometry

定义模型

protected override Geometry DefiningGeometry { get; }

Property Value

Geometry

IsSelected

是否被选中

public bool IsSelected { get; }

Property Value

bool

MouseOverStrokeThickness

public double MouseOverStrokeThickness { get; set; }

Property Value

double

Name

public string Name { get; set; }

Property Value

string

NormalStrokeThickness

public double NormalStrokeThickness { get; set; }

Property Value

double

Position

左上方点坐标

public Point Position { get; set; }

Property Value

Point

Rect

矩形区域形状

public Rect Rect { get; }

Property Value

Rect

RenderedGeometry

渲染模型

public override Geometry RenderedGeometry { get; }

Property Value

Geometry

SelectedStrokeThickness

public double SelectedStrokeThickness { get; set; }

Property Value

double

SeletedAndMouseOverStrokeThickness

public double SeletedAndMouseOverStrokeThickness { get; set; }

Property Value

double

Methods

Clear()

清理图形

public void Clear()

Clear(InkCanvas)

清理图形

public void Clear(InkCanvas canvas)

Parameters

canvas InkCanvas

Draw(InkCanvas)

绘制图形

public virtual void Draw(InkCanvas canvas)

Parameters

canvas InkCanvas

SetSelected()

设置选中

public void SetSelected()

Events

Selected

选中改变事件

public event Action<RectangleShape> Selected

Event Type

Action<RectangleShape>