Class LayerView
public class LayerView : FrameworkElement, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient
- Inheritance
-
LayerView
- Implements
- Inherited Members
- Extension Methods
Constructors
LayerView()
public LayerView()
Fields
CoordProperty
public static readonly DependencyProperty CoordProperty
Field Value
CoordinateChangedRoutedEvent
public static readonly RoutedEvent CoordinateChangedRoutedEvent
Field Value
MessagesProperty
public static readonly DependencyProperty MessagesProperty
Field Value
OffsetProperty
public static readonly DependencyProperty OffsetProperty
Field Value
RectProperty
public static readonly DependencyProperty RectProperty
Field Value
ScaleProperty
public static readonly DependencyProperty ScaleProperty
Field Value
SelectedLayerProperty
public static readonly DependencyProperty SelectedLayerProperty
Field Value
Properties
Coord
public RotateCoordinate Coord { get; }
Property Value
Layers
public ObservableCollection<ILayer> Layers { get; }
Property Value
Messages
public Messages Messages { get; set; }
Property Value
SelectedLayer
public ILayer SelectedLayer { get; set; }
Property Value
VisualChildrenCount
Gets the number of visual child elements within this element.
protected override int VisualChildrenCount { get; }
Property Value
- int
The number of visual child elements for this element.
Methods
AnimationCenterTo(Point)
public void AnimationCenterTo(Point point)
Parameters
point
Point
AnimationPanZoomToAll()
public void AnimationPanZoomToAll()
AnimationPoints(Action, params Point[])
public void AnimationPoints(Action completedAction, params Point[] points)
Parameters
AnimationRectTo(Rect)
public void AnimationRectTo(Rect rect)
Parameters
rect
Rect
AnimationRects(Action, params Rect[])
public void AnimationRects(Action completedAction, params Rect[] rects)
Parameters
AnimationZoom(Point, bool)
public void AnimationZoom(Point center, bool zoomIn)
Parameters
ArrangeOverride(Size)
When overridden in a derived class, positions child elements and determines a size for a FrameworkElement derived class.
protected override Size ArrangeOverride(Size finalSize)
Parameters
finalSize
SizeThe final area within the parent that this element should use to arrange itself and its children.
Returns
- Size
The actual size used.
GetBounds()
public Rect GetBounds()
Returns
GetPanCenterToOffset(Point)
public Point GetPanCenterToOffset(Point ptCenter)
Parameters
ptCenter
Point
Returns
GetPanZoomToViewScale(Rect, double, double, bool)
public double GetPanZoomToViewScale(Rect rc, double pixelMarginX = 2, double pixelMaringY = 2, bool zoomIn = true)
Parameters
Returns
GetTargetCoord(Rect, double, double, bool)
public Tuple<double, Point> GetTargetCoord(Rect rc, double pixelMarginX = 2, double pixelMaringY = 2, bool zoomIn = true)
Parameters
Returns
GetVisualChild(int)
Overrides GetVisualChild(int), and returns a child at the specified index from a collection of child elements.
protected override Visual GetVisualChild(int index)
Parameters
index
intThe zero-based index of the requested child element in the collection.
Returns
- Visual
The requested child element. This should not return null; if the provided index is out of range, an exception is thrown.
InitCoord()
public void InitCoord()
IsFitRect(Rect)
public bool IsFitRect(Rect rect)
Parameters
rect
Rect
Returns
MeasureOverride(Size)
When overridden in a derived class, measures the size in layout required for child elements and determines a size for the FrameworkElement-derived class.
protected override Size MeasureOverride(Size availableSize)
Parameters
availableSize
SizeThe available size that this element can give to child elements. Infinity can be specified as a value to indicate that the element will size to whatever content is available.
Returns
- Size
The size that this element determines it needs during layout, based on its calculations of child element sizes.
OnCoordinateChanged()
protected void OnCoordinateChanged()
OnScaleChanged(double, double)
protected void OnScaleChanged(double o, double n)
Parameters
PanCenterTo(Point)
public void PanCenterTo(Point ptCenter)
Parameters
ptCenter
Point
PanZoomToAll(double)
public void PanZoomToAll(double pixelMargin = 0)
Parameters
pixelMargin
double
PanZoomToView(Rect, double, double, bool)
public void PanZoomToView(Rect rc, double pixelMarginX = 2, double pixelMaringY = 2, bool zoomIn = true)
Parameters
RefreshDraw()
public void RefreshDraw()
RotateAt(double, Point)
public void RotateAt(double angle, Point center)
Parameters
StopAnimation()
public void StopAnimation()
Zoom(Point, bool)
public void Zoom(Point center, bool zoomIn)
Parameters
Zoom(Point, double)
public void Zoom(Point center, double scale)
Parameters
Events
CoordinateChanged
public event RoutedEventHandler CoordinateChanged